Help with php

Xycron

banned
in the middle of a php page i used a print to type something, and then i decied to have a url forward so it would swich pages after a few seconds, when i do that i get an error on the page and it doesn't work, then i tryed just even making a LINK and it wont work. Am i missing some php rule here? how could i have a link or a forward in a print.
 
how exactly are you trying to forward? js or meta?
are you putting the code for it in the print command thing, if so make sure that you put a \ before the quotes, so that php will ignore it as being the end of the script, eg:
instead of
print "<a href="webpage.php">Webpage.php</a>";
you should have:
print "<a href=\"webpage.php\">webpage.php</a>";
you get waht i mean?
 
Back
Top