bobber205 Posted September 2, 2006 Share Posted September 2, 2006 I have a table called "test". I am able to connect to it.Here's what I know about the table from what I created in phpMyAdmin.Field Type Null----------------------Image_Name varchar(100) noImage_URL varchar(100) noHow would I insert "alex" into image_name and "/images/alex.jpg" into image_URL?I am confused. Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted September 2, 2006 Share Posted September 2, 2006 To put alex in to the table you need to insert it into the database with an sql query:[code=php:0]// setup our query$sql = "INSERT INTO test (Image_Name, Image_URL) VALUES ('alex', 'images/')";// preform the query$result = mysql_query($sql) or die(mysql_error());[/code] Quote Link to comment Share on other sites More sharing options...
bobber205 Posted September 2, 2006 Author Share Posted September 2, 2006 That makes much more sense that what I was seeing. Thanks! :D Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.