Greetings!
I'm new to PHP coming from an ASP background. ASP allows me to redirect to a page with the response.redirect command as follows:
<%
If a = 1 Then
Response.redirect "/page_a.asp"
Else
Response.redirect "/page_b.asp"
End If
%>
Is it possible to do conditional redirection on PHP4? Is there a similar command to this in PHP4, if so, what is it?
Many thanks,
Anthony