Ok everyone, i've started using PHP as of today for a school project.
I'm using Apache with MYSQL and PHP 4
This is a real newb question..
i'm trying to link to another page for a certain result of an
if statement, i don't want to create a link i just want to display the linked page.
Is there a PHP function for this or do i have to handle this with HTML?
i have something like
if( ($myrow = mysql_fetch_array($result)) and ($myrow ["password"] == $var2) )
{
echo("successful!\n");
/*goto [url]http://somepage.com*/[/url]
}