RE: [PHP] Re: how to insert form data

2004-06-03 Thread Ford, Mike [LSS]
On 03 June 2004 03:57, Ligaya Turmelle wrote: > shouln't be > QUOTE: http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: how to insert form data

2004-06-02 Thread Ligaya Turmelle
shouln't be QUOTE: wrote in message news:[EMAIL PROTECTED] > Should be: > > > NAME: > QUOTE: > > > > HTH > > > Matt > > On 3 Jun 2004, at 04:33, BigMark wrote: > > > OK no errors now but no data inserted, my form must be wrong as well. > > > > > > NAME > > > > QUOTE > > > > > > >

RE: [PHP] Re: how to insert form data

2004-06-02 Thread Jay Blanchard
[snip] thanks works fine [/snip] No problem...a couple of notes a. Avoid using words that may be key words (such as 'name'). There are lists available for you database and PHP at their websites. 2. Always respond to the list as a private response may get inadvertently dumped to the spam folde

RE: [PHP] Re: how to insert form data

2004-06-02 Thread Jay Blanchard
[snip] Well getting closer now, its inserting into the tables but they are blank (no text) [/snip] let's go short...(and watch for/avoid keywords like 'name') form.php input.php \n"; $sql = "INSERT INTO whosaid (username) VALUES ('" . $username . "'); if(!($insert = mysql_query($sql, $yourC

RE: [PHP] Re: how to insert form data

2004-06-02 Thread Jay Blanchard
[snip] Well getting closer now, its inserting into the tables but they are blank (no text) [/snip] Have you echo'd out the values to the screen? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: how to insert form data

2004-06-02 Thread BigMark
Well getting closer now, its inserting into the tables but they are blank (no text) Any ideas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: how to insert form data

2004-06-02 Thread Matt MacLeod
Should be: NAME: QUOTE: HTH Matt On 3 Jun 2004, at 04:33, BigMark wrote: OK no errors now but no data inserted, my form must be wrong as well. NAME QUOTE -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP G

[PHP] Re: how to insert form data

2004-06-02 Thread BigMark
OK no errors now but no data inserted, my form must be wrong as well. NAME QUOTE -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: how to insert form data

2004-06-02 Thread Craig Donnelly
HTH Craig "Bigmark" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > 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 >