Re: [PHP-DB] data is not entering in created database

2004-12-26 Thread Bastien Koert
php-db@lists.php.net Subject: Re: [PHP-DB] data is not entering in created database Date: Sat, 25 Dec 2004 22:41:01 -0800 (PST) hallo, this was working well , submit is evaluating true, no errors, but now data is not shown in databse table $dbh=mysql_connect ("localhost",

Re: [PHP-DB] data is not entering in created database

2004-12-25 Thread amol patil
hallo, this was working well , submit is evaluating true, no errors, but now data is not shown in databse table what may be glitch graeme <[EMAIL PROTECTED]> wrote: I suspect that your $submit is not set up, try the following echo statements before the if statement: echo "--$su

Re: [PHP-DB] data is not entering in created database

2004-12-24 Thread Mike S.
> hallo , > > i have wriiten simple php script , below. > created databse "dollar1_allinfo" with table 'totalinfo' > > but on clicking submit button , > > information entered is not entering in database. > > also, echo statements are also not displaying after submit > > if ($submit) > { >

Re: [PHP-DB] data is not entering in created database

2004-12-24 Thread graeme
I suspect that your $submit is not set up, try the following echo statements before the if statement: echo "--$submit--"; echo "--$_POST["submit"]--"; amol patil wrote: hallo , i have wriiten simple php script , below. created databse "dollar1_allinfo" with table 'totalinfo' but on clicking submi

[PHP-DB] data is not entering in created database

2004-12-24 Thread amol patil
hallo , i have wriiten simple php script , below. created databse "dollar1_allinfo" with table 'totalinfo' but on clicking submit button , information entered is not entering in database. also, echo statements are also not displaying after submit thank you.