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'
   );