?? xmla.php
字號:
<?php
if ( stristr($_SERVER["HTTP_ACCEPT"],"application/xhtml+xml") ) {
header("Content-type: application/xhtml+xml"); } else {
header("Content-type: text/xml");
}
echo("<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n");
if(!isset($_GET["posStart"])){
$_GET["posStart"] = 0;
}
?>
<rows pos="<?=$_GET['posStart']?>">
<?php
if($_GET["posStart"]<5000){
$start = $_GET["posStart"]+1;
$to = $start+50;
for($i = $start;$i<$to;$i++){
print("<row id='r$i' first='index is $i' second='altermative xml format' third='xmlA' />\n");
}
}
?>
</rows>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -