Re: [PHP-DB] how to connect new html page in PHP.

2004-12-25 Thread Zareef Ahmed
On Sat, 25 Dec 2004 17:27:18 +0800, Jason Wong <[EMAIL PROTECTED]> wrote: > On Saturday 25 December 2004 17:07, Zareef Ahmed wrote: > > On Sat, 25 Dec 2004 16:41:40 +0800, Jason Wong <[EMAIL PROTECTED]> wrote: > > > On Saturday 25 December 2004 16:32, Zareef Ahmed wrote: > > > > $header="from:[EMAI

Re: [PHP-DB] how to connect new html page in PHP.

2004-12-25 Thread Jason Wong
On Saturday 25 December 2004 17:07, Zareef Ahmed wrote: > On Sat, 25 Dec 2004 16:41:40 +0800, Jason Wong <[EMAIL PROTECTED]> wrote: > > On Saturday 25 December 2004 16:32, Zareef Ahmed wrote: > > > $header="from:[EMAIL PROTECTED] \n\r\n\r"; > > > > The newlines should be \r\n and not \n\r. > > Does

Re: [PHP-DB] how to connect new html page in PHP.

2004-12-25 Thread Zareef Ahmed
On Sat, 25 Dec 2004 16:41:40 +0800, Jason Wong <[EMAIL PROTECTED]> wrote: > On Saturday 25 December 2004 16:32, Zareef Ahmed wrote: > > > $header="from:[EMAIL PROTECTED] \n\r\n\r"; > > The newlines should be \r\n and not \n\r. Does it really make a diffrence? zareef ahmed > > -- > Jason Wong

Re: [PHP-DB] how to connect new html page in PHP.

2004-12-25 Thread Jason Wong
On Saturday 25 December 2004 16:32, Zareef Ahmed wrote: > $header="from:[EMAIL PROTECTED] \n\r\n\r"; The newlines should be \r\n and not \n\r. -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applicati

Re: [PHP-DB] how to connect new html page in PHP.

2004-12-25 Thread Zareef Ahmed
Please remove url bankdrt.com from example. it was included accidently. zareef ahmed On Sat, 25 Dec 2004 14:02:58 +0530, Zareef Ahmed <[EMAIL PROTECTED]> wrote: > Hi, > > A simple example of the code. It send email and when it sends email > it does not display the original form. > > Please no

Re: [PHP-DB] how to connect new html page in PHP.

2004-12-25 Thread Zareef Ahmed
Hi, A simple example of the code. It send email and when it sends email it does not display the original form. Please note the use of isset() and submit button name use. zareef ahmed Test Again"; }else { echo "Mail function fail"; } } else { ?> To :: Subject :: Message -

Re: [PHP-DB] how to connect new html page in PHP.

2004-12-25 Thread graeme
The following two scripts should help you... in file Page1.php echo "Hello this is the first page \n"; echo "This is in file Page1.php\n"; echo "\n"; echo "\t\n"; echo "\n"; echo "Note the input button must be wrapped in a form tag"; echo 'Also the name attribute is the variable name that will be

[PHP-DB] how to connect new html page in PHP.

2004-12-24 Thread amol patil
hallo , i wrote this , echo "Submit = $submit";as you said. but comments in echo statements are appearing on same pages before clicking submit button and in between same pages content . i want these comment on new page or same page but without original content of that page how to c