- Forums
- Tutorial And Guides
- How To Insert Multiple Rows In One Query Mysql Php
This Page Contains information about How To Insert Multiple Rows In One Query Mysql Php By wallpaperama in category Tutorial And Guides with 0 Replies. [1522], Last Updated: Sat May 18, 2024
wallpaperama
Thu Apr 16, 2009
0 Comments
2106 Visits
wow, today i had this script and i wanted to know how i go about sending a query using php and mysql in my code, well if you are also wondering how, this is how you would enter information into a my sql database in multiple rows in a table.
INSERT INTO wallpapers(wallpaper_name,
wallpaper_title,
wallpaper_category,
wallpaper_hits,
wallpaper_status,
wallpaper_downloads)
VALUES(
'wallpaperama wallpapers',
'wallpaperama',
'free-wallpapers',
'1',
'active',
'25'
),
(
'Webune hosting',
'webune',
'hosting',
'1',
'active',
'25'
);