您好,登錄后才能下訂單哦!
第26例
會員信息分頁顯示
conn.php頁面:
<?php
header("Content-Type:text/html;charset=utf-8");
mysql_connect("localhost","root","") or die("數據庫連接有誤!");
mysql_select_db("student") or die("數據庫選擇有誤!");
mysql_query("set names 'utf8'");
?>
<?php
//user.php頁面:
$page=isset($_GET['page'])?$_GET['page']:1;
$pagesize=5; //顯示條數
$sql="select count(*) from student";
$result=mysql_query($sql);
$maxrows=mysql_result($result,0,0);
$maxpage=ceil($maxrows/$pagesize);
if($page>$maxpage)
{
$page=$maxpage;
}
if($page<1)
{
$page=1;
}
$offset=($page-1)*$pagesize;
$sql="select * from student limit{$offset},$pagesize";
$result=mysql_query($sql);
while($rows=mysql_fetch_assoc($result))
{
echo "<tr>";
echo "<td>{$rows['id']}</td>";
echo "<td>{$rows['username']}</td>";
echo "<td>{$rows['email']}</td>";
echo "<td>".date("Y-m-d H:i:s",$rows['datetime']+8*3600)."</td>";
echo "</tr>";
}
?>
第27例:
檢測用戶輸入日期的合法性
<form action="index.php" method="poost">
<b>檢測用戶輸入日期的合法性</b>
用戶名:<input type="text" name="username" value=""/><br />
生日日期:<input type="text" name="userdate" value="" size="18"/><br />
<input type="submit" value="檢測"/>
<input type="reset" value="重置"/>
</form>
<?php
if(!empty($_POST['username']))
{
$arr=explode("-",$_POST['userdate']);
if(checkdate($arr[1],$arr[2],$arr[0]))
{
echo "<script>alert('日期".$_POST['userdate']."格式正確')</script>";
}else{
echo "<script>alert('日期".$_POST['userdate']."格式不對')</script>";
}
}
?>
第28例
延遲php腳本的執行時間
<?php
header("Content-Type:text/html;charset=utf-8");
echo "腳本載入時間:".date('Y-m-d H:i:s');
sleep(5); //腳本等待5秒后執行
echo "<br/><br/>";
echo "執行完畢時間:".date('Y-m-d H:i:s');
?>
第29例
使用php動態創建嵌套文件夾
<?php
header("Content-Type:text/html;charset=utf-8");
function createfolder($path)
{
if(!file_exists($path))
{
createfolder(dirname($path));
mkdir($path,0777);
}
}
createfolder("aa/bb/cc");//模擬測試
?>
第30例
用戶成績查詢
<?php
header("Content-Type:text/html;charset=utf-8");
?>
<form action="index.php" method="post" >
<b>輸入分數</b><br />
分數:<input type="text" name="result" value=""/><br />
<input type="submit" value="查詢"/>
<input type="reset"/>
</form>
<?php
if(!empty($_POST['result']))
{
$result=$_POST['result'];
if($result>=80&&$result<=100)
{
echo "<script>alert('您的成績為優秀')</script>";
}else if($result>=60&&$result<80)
{
echo "<script>alert('您的成績為合格')</script>";
}else
{
echo "<script>alert('您的成績為不合格')</script>";
}
}
?>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。