AW: [PHP] how to insert form data // BigMark

2004-06-03 Thread Shahed, Raja
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



[PHP] how to insert form data

2004-06-02 Thread BigMark
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



RE: [PHP] how to insert form data

2004-06-02 Thread Angelo Zanetti
INSERT into whosaid (name, quote) values ('$name', '$quote');

-Original Message-
From: BigMark [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 03, 2004 5:13 AM
To: [EMAIL PROTECTED]
Subject: [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


Disclaimer 
This e-mail transmission contains confidential information,
which is the property of the sender.
The information in this e-mail or attachments thereto is 
intended for the attention and use only of the addressee. 
Should you have received this e-mail in error, please delete 
and destroy it and any attachments thereto immediately. 
Under no circumstances will the Cape Technikon or the sender 
of this e-mail be liable to any party for any direct, indirect, 
special or other consequential damages for any use of this e-mail.
For the detailed e-mail disclaimer please refer to 
http://www.ctech.ac.za/polic or call +27 (0)21 460 3911

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