topical media & game development

talk show tell print

server-php-sql-example-insert.php / php



  <h4>insert php/mysql</h4>
  <br>
  
  <?php
  mysql_connect("localhost", "root", "hush") or die(mysql_error());
  mysql_select_db("local") or die(mysql_error());
  
  // Insert a row of information into the table "example"
  mysql_query("INSERT INTO example 
  (name, age) VALUES('Timmy Mellowman', '23' ) ") 
  or die(mysql_error());  
  
  mysql_query("INSERT INTO example 
  (name, age) VALUES('Sandy Smith', '21' ) ") 
  or die(mysql_error());  
  
  mysql_query("INSERT INTO example 
  (name, age) VALUES('Bobby Wallace', '15' ) ") 
  or die(mysql_error());  
  
  echo "Data Inserted!<br />";
  ?>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.