标签: php
如何使用php将行附加到表中?
答案 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 }