Is there any sort of PHP code that can send a user to a different page? Right now I have it writing a meta HTTP-EQUIV="REFRESH" for zero seconds, but it still flashes the page it was just on before going to the next page.
Hope that makes sense.
header('location:URL');
should work
Does that send someone to a different page right out of the PHP code though?
well.. why don't you try it?
Hint: yes, as long as you have not generate any output beforehand
Seems to work well. Thank you!