I want to create dynamic rows and column with the help of PHP and HTML but I am little confused about this code so some help is definitely appreciated.
&l
i think you should try doing it in a while loop . for example
$sql = your.sql.query;
$row = mysql_query($sql);
$result = mysql_fetch_arrey($row)
while($row!=0) {
echo "
// number of you need according to your data return in the query:
$result['column']
$result['column']
";
}
if i understand what you're trying to do.
- 热议问题