在php中添加一行

时间:2011-04-27 02:14:23

标签: php

如何使用php将行附加到表中?

1 个答案:

答案 0 :(得分:1)

使用循环。和一个会议

session_start();
$_SESSION[rows] = 5;

<a href='?add=row'>Add row</a>

if($_GET[add] == 'row'){
 $_SESSIOn[rows] += 1;
}

while($rows != 0){
// create rows
}