OK! We’re connected to a MySQL database! Far out! Now what?
We need to put data IN to the database and use it!
So, here’s how we do it.
First of all, you have to select the database with the
mysql_select_db() command.
<?php
mysql_select_db("my_db") or die(mysql_error());
?>
No comments:
Post a Comment