Hi everyone,

I don't get my upload to work properly. It's a tutorial of the web, but it
doesn't function (unless I made a mistake). Please help me...
I have a form passing on 5 fields (text for testing), name: year, make,
model, price, picture and submit to PHP_SELF

<?php
if ($submit) {

$db = mysql_connect("localhost","myname","mypassword");

mysql_select_db("$test",$db);
//DB Test for testing...

$sql = "INSERT INTO test (year,make,model,price,picture) VALUES
('$year,$make,$model,$price,$picture')";
//I created these columns in the table test


echo "year: $year<br>\n";
echo "make: $make<br>\n";
echo "model: $model<br>\n";
echo "price: $price<br>\n";
echo "picture: $picture<br>\n";
}

?>

I know I need globals on for this.
Thanx for the help,
Jacco
--
http://seabird.jmtech.ca

Attitude is Everything!
But Remember, Attitudes are Contagious!
Is Yours worth Catching????



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to