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. Link to comment https://forums.phpfreaks.com/topic/19498-first-php-and-mysql-help-needed/ 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] Link to comment https://forums.phpfreaks.com/topic/19498-first-php-and-mysql-help-needed/#findComment-84765 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 Link to comment https://forums.phpfreaks.com/topic/19498-first-php-and-mysql-help-needed/#findComment-84789 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.