Okay...I am now having difficulty with putting things INTO the database.

The form is on another page, and links to this one.

<?php
$Host="localhost";
$User="us34992a";
$Password="******";
$DBname="db34992a";
$Link=mysql_connect ($Host, $User, $Password);
$db=mysql_select_db($DBname, $Link)
or die ("Unable to select database");
$Query="INSERT into calendar values
('$meeting_name','$meeting_place','$meeting_date','$meeting_note')";
$result=mysql_query($Query);
mysql_close ($Link);
?>


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

Reply via email to