BigMark wrote

$sql = "INSERT INTO whosaid (name,quote) VALUES ('$name', '$quote')";
//$sql = "INSERT INTO whosaid (name,quote) VALUES ('','$name', '$quote')";
//if you have auto_incrementing id
$result = mysql_qeury($sql);

Try this way!
Best regards
Raja shahed










>-----Ursprüngliche Nachricht-----
>Von: BigMark [mailto:[EMAIL PROTECTED] 
>Gesendet: Donnerstag, 3. Juni 2004 05:13
>An: [EMAIL PROTECTED]
>Betreff: [PHP] how to insert form data 
>
>
>I am trying to learn how to take the value of $name and $quote 
>from a form
>and put it in the database -whosaid
>but obviuosly i have it all wrong. Can anyone point out what 
>im doing wrong.
>
>thx in advance
>
>
><?php
>include("connect.php");
>$name = $_POST['name'];
>$quote = $_POST['quote'];
>$sql = "INSERT INTO whosaid values (name='$name',quote='$quote');
>?>
>
>-- 
>PHP General Mailing List (http://www.php.net/)
>To unsubscribe, visit: http://www.php.net/unsub.php
> raja @christine nothdurfter . it
>

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

Reply via email to