[PHP] Please help with code

2002-04-01 Thread Denis L. Menezes
Hello friends, can someone tell me what is wrong with this code : form name=form1 method=post action= p input type=text name=newsid /p p input type=text name=title /p p input type=text name=author /p p input type=text name=body /p p input type=submit

Re: [PHP] Please help with code

2002-04-01 Thread Andrew Brampton
. Menezes [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 01, 2002 5:08 PM Subject: [PHP] Please help with code Hello friends, can someone tell me what is wrong with this code : form name=form1 method=post action= p input type=text name=newsid /p p input type=text name

Re: [PHP] Please help with code

2002-04-01 Thread Denis L. Menezes
Should I change the position of the php code? Thanks denis - Original Message - From: Andrew Brampton [EMAIL PROTECTED] To: Denis L. Menezes [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, April 02, 2002 12:31 AM Subject: Re: [PHP] Please help with code You are not actually

Re: [PHP] Please help with code

2002-04-01 Thread Erik Price
On Monday, April 1, 2002, at 11:08 AM, Denis L. Menezes wrote: $query=INSERT INTO news (newsid,title, author, body, posted) VALUES($newsid,$title, $author, $body, UNIX_TIMESTAMP()); IF (mysql_query($query)){ print Row added to table; } else { print error adding row; }

RE: [PHP] Please help with code

2002-04-01 Thread Rick Emery
input type=text name=body /p p input type=submit name=Submit value=Submit /p /form /body -Original Message- From: Denis L. Menezes [mailto:[EMAIL PROTECTED]] Sent: Monday, April 01, 2002 10:09 AM To: [EMAIL PROTECTED] Subject: [PHP] Please help with code Hello friends, can

Re: [PHP] Please help with code

2002-04-01 Thread Harry Yu
You forgot to select the database that you want to insert. Ex: $db = mysql_select_db ( mydatabase ); Hope this helps, Harry --- Denis L. Menezes [EMAIL PROTECTED] wrote: Hello friends, can someone tell me what is wrong with this code : form name=form1 method=post action= p