nasıl ben php çağrıldığını xml veri belleği uygulamak yok. Ben hayır şans ile xml dosyası üzerinde çeşitli jquery sayfalamayı çalışıyorum.
html / xml veri okuma php kodu:
<div id="display">
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
$xmldoc = new DOMDocument();
if(!file_exists('test.xml')){
echo "Sorry this file does not exists!";
exit();
} else {
$xmldoc->load('test.xml', LIBXML_NOBLANKS);
// Load up the XSL file
$xslDoc = new DomDocument;
$xslDoc->load("test.xsl");
$xsl = new XSLTProcessor;
$xsl->importStyleSheet($xslDoc);
// apply the transformation
echo $xsl->transformToXml($xmldoc);
}
?>
</div>
script [one example]:
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript" src="paginator.js"></script>
<script type="text/javascript">
$(function(){ $("#display").pagination(); });
</script>