Jump to content

First PHP and MySQL Help Needed


bobber205

Recommended Posts

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) no
Image_URL varchar(100) no

How 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

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]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.