新手求助PHP的简单问题~~
1、PHP的session默认是多少时间失效的?
为什么我半个小时不动回来刷新页面以后还正常访问没有提示超时或者没有登陆。
2、我循环读出了符合条件的记录我现在想排成一列4个数据。
就譬如一共读出了10条记录那么他们的排列应该是这样的。
1 2 3 4
5 6 7 8
9 10
......
我的代码的这样的
1
2
3
4
5
6
7
8
9
10
............
if($myrow=mysql_fetch_array($result))
{
do
{
$id=$myrow["id"];
$Title=$myrow["Title"];
$addtime=$myrow["addtime"];
............
<tr>
<td height="22" align="left><?echo "aa"?></td>
</tr>
<tr>
<?
}while ($myrow=mysql_fetch_array($result));
}
else
{
echo
?>
<tr>
<td height="25" align="center">暂无信息</td>
</tr>
<?
}
?>