Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End how to insert multiple rows in one table Re: how to insert multiple rows in one table

#72993
The-Marshal
Member

Thanx ylex1

Sorry ☺

i meant Insert multiple rows in DataBase table

Like

we assume we created table called info


$Query = INSERT INTO info (name, age) VALUES ('$name', '$age');
$SQL = mysql_query($Query);

This query will insert on row in the SQL table

then insert new data in the form and insert again that’s take long time

i don’t know the idea to insert multiple row in one time