Re[2]: [PHP] something like alert (javascript)

2001-10-04 Thread Morten Winkler Jørgensen
EK> I'm using a simple print() (PHP) but alert() would EK> be much better. Have php print your BODY tag like this: That's the best solution I think. -- Kind regards, Morten Winkler -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: [PHP] something like alert (javascript)

2001-10-04 Thread Eduardo Kokubo
27;Eduardo Kokubo' <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, October 03, 2001 11:38 AM Subject: RE: [PHP] something like alert (javascript) > Then what do you need? > > We are not any sure on what your question is ... > > Maxim Maletsky > www.PHPBeginne

Re: [PHP] something like alert (javascript)

2001-10-03 Thread Alexander Deruwe
On Wednesday 03 October 2001 14:30, Eduardo Kokubo wrote: > Is there any function in PHP that is similar to alert() or confirm() of > javascript ? I tried die() but that's not what I need. PHP is server side, so you cannot have it pop windows up, or ask the user questions in an inputbox (unless

RE: [PHP] something like alert (javascript)

2001-10-03 Thread Maxim Maletsky \(PHPBeginner.com\)
Then what do you need? We are not any sure on what your question is ... Maxim Maletsky www.PHPBeginner.com -Original Message- From: Eduardo Kokubo [mailto:[EMAIL PROTECTED]] Sent: mercoledì 3 ottobre 2001 16.31 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: [PHP] something like

RE: [PHP] something like alert (javascript)

2001-10-03 Thread Boget, Chris
> Is there any function in PHP that is similar to alert() or > confirm() of javascript ? I tried die() but that's not what I need. What do you want it to do? Remember, though, that PHP = server side while Javascript = client side. If you want alert() or confirm() functionality on the client

[PHP] something like alert (javascript)

2001-10-03 Thread Eduardo Kokubo
Is there any function in PHP that is similar to alert() or confirm() of javascript ? I tried die() but that's not what I need.