Hi all,
I am trying to set up a PHP dynamic pop, e.g.
http://www.domain.com/?message=logged-in
would produce a javascript pop up to say "You are now logged in" and
http://www.domain.com/?message=logged-out
would produce a javascript pop up to say "You are now logged out"
If this was being done in ASP the code would look something like
<% If Request("message") = "logged-in" Then %>
{do login popup}
<% End If %>
What code would I use for PHP to achieve the same effect?
Thanks everyone,
James