Is there a PHP equivalent to the Javascript alert box? I'd like to use an alert box to notify the user how many records have been found after a query is run.
No, there isn't. PHP runs on the server, Javascript on the client. The difference is quite important. You can use PHP to dynamically write a Javascript alert box, if you liked.
Originally posted by Shrike No, there isn't. PHP runs on the server, Javascript on the client. The difference is quite important. You can use PHP to dynamically write a Javascript alert box, if you liked.
Oh, DUH!!! I knew that. :rolleyes: Thanks.