RE: [PHP] get back to index.php

2003-10-22 Thread Fernando Melo
Make sure there are no blank spaces being echoed. -Original Message- From: Sudheer Palaparambil [mailto:[EMAIL PROTECTED] Sent: 22 October 2003 14:30 To: [EMAIL PROTECTED] Subject: Re: [PHP] get back to index.php But it is giving the following error message Warning: Cannot modify

Re: [PHP] get back to index.php

2003-10-22 Thread Sudheer Palaparambil
: Marek Kilimajer <[EMAIL PROTECTED]> To: Sudheer Palaparambil <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] Subject: Re: [PHP] get back to index.php Date: Wed, 22 Oct 2003 14:24:44 +0200 Use header('Location: http://www.etooss.com/'); exit; Sudheer Palaparambil wrote: Hi, I am calli

Re: [PHP] get back to index.php

2003-10-22 Thread Marek Kilimajer
Use header('Location: http://www.etooss.com/'); exit; Sudheer Palaparambil wrote: Hi, I am calling the insert_user.php like this http://www.etooss.com/insert_user.php"; onsubmit="return verifyIt(this);"> In insert_user.php, I am inserting the record to mysql db, nothing is displayed the

RE: [PHP] get back to index.php

2003-10-22 Thread Fernando Melo
In insert_user.php header("Location: index.php"); exit; make sure nothing is being echoed before you call this. -Original Message- From: Sudheer Palaparambil [mailto:[EMAIL PROTECTED] Sent: 22 October 2003 14:15 To: [EMAIL PROTECTED] Subject: [PHP] get back to index.php Hi

[PHP] get back to index.php

2003-10-22 Thread Sudheer Palaparambil
Hi, I am calling the insert_user.php like this http://www.etooss.com/insert_user.php"; onsubmit="return verifyIt(this);"> In insert_user.php, I am inserting the record to mysql db, nothing is displayed there. Now how do come back to index.php screen. Thank you Sudheer ___