?? dynscroll.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["rowsLoaded"])){
$_GET["rowsLoaded"] = 0;
}
?>
<rows>
<?php
if($_GET["rowsLoaded"]<500){
$start = $_GET["rowsLoaded"]+1;
$to = $start+100;
for($i = $start;$i<$to;$i++){
print("<row id='r$i'><cell>index is $i</cell><cell>load turn started from $start</cell></row>");
}
}
?>
</rows>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -