需要在一行的每个值的不同文本框中显示数据库中的数据。当我单击下一个按钮,然后在该文本框中显示下一行的值,当我单击上一个按钮,然后显示上一行的值。
所有代码必须是php。
答案 0 :(得分:3)
你想要的是分页。
使用Google中的“PHP分页”搜索了这些results
答案 1 :(得分:1)
<html>
<head>
<?php
function myfunc()
{
$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = "Hi there!";
fwrite($fh, $stringData);
fclose($fh);
}
?>
</head>
<body>
<input type="button" onclick="myfunc()" value="Click!" />
</body>
</html>