[PHP] Display a mesagge and redirect (newbie)

2002-01-17 Thread Simos Varelakis
Hi to everyone I want to do the following and i dont know if its possible with php code a) run a mysql query b) display a simpe message c) delay few seconds d)auto redirect to a page can I do this with php i know how to do a) and b) and I can't do c) and d) note that if i try d) with function

Re: [PHP] Display a mesagge and redirect (newbie)

2002-01-17 Thread Jon Farmer
: Simos Varelakis [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 17, 2002 12:36 PM Subject: [PHP] Display a mesagge and redirect (newbie) Hi to everyone I want to do the following and i dont know if its possible with php code a) run a mysql query b) display a simpe message c

Re: [PHP] Display a mesagge and redirect (newbie)

2002-01-17 Thread DL Neil
] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: 17 January 2002 12:42 Subject: Re: [PHP] Display a mesagge and redirect (newbie) c) and d) are clientside functions if you have already outputted data to the browser so use Javascript to do them -- Jon Farmer Systems Programmer, Entanet www.enta.net

RE: [PHP] Display a mesagge and redirect (newbie)

2002-01-17 Thread Niklas Lampén
for that) d) Times up. location.href will take you where you want. Niklas -Original Message- From: Simos Varelakis [mailto:[EMAIL PROTECTED]] Sent: 17. tammikuuta 2002 14:37 To: [EMAIL PROTECTED] Subject: [PHP] Display a mesagge and redirect (newbie) Hi to everyone I want to do

RE: [PHP] Display a mesagge and redirect (newbie)

2002-01-17 Thread Intruder
a) run a mysql query b) display a simpe message c) delay few seconds d)auto redirect to a page meta http-equiv=refresh content=5; URL=new_page.php body some message goes here !!! /body -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: [PHP] Display a mesagge and redirect (newbie)

2002-01-17 Thread Niklas Lampén
to the next page after 5 seconds. Niklas -Original Message- From: Intruder [mailto:[EMAIL PROTECTED]] Sent: 17. tammikuuta 2002 15:52 To: Php-General Subject: RE: [PHP] Display a mesagge and redirect (newbie) a) run a mysql query b) display a simpe message c) delay few seconds d)auto

RE: [PHP] Display a mesagge and redirect (newbie)

2002-01-17 Thread Intruder
No good, since meta starts counting when page is first opened, so clients with slow connection might not never see the message. I'd rather use what do you mean slow connection ??? 10 bytes/second ??? I don't think that someone has such speed and to load your code slow-connected person will

RE: [PHP] Display a mesagge and redirect (newbie)

2002-01-17 Thread Niklas Lampén
[mailto:[EMAIL PROTECTED]] Sent: 17. tammikuuta 2002 16:20 To: Php-General Subject: RE: [PHP] Display a mesagge and redirect (newbie) No good, since meta starts counting when page is first opened, so clients with slow connection might not never see the message. I'd rather use what do you mean

Re: [PHP] Display a mesagge and redirect (newbie)

2002-01-17 Thread DL Neil
buffering. By then I think the JavaScript alternative will sound far more attractive... Regards, =dn - Original Message - From: Niklas Lampén [EMAIL PROTECTED] To: Php-General [EMAIL PROTECTED] Sent: 17 January 2002 14:05 Subject: RE: [PHP] Display a mesagge and redirect (newbie) No good