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
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]

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.