Hi, I am trying to do a redirect, using a variable page name from a database, i am using the following line
header('Location: $myrow[2]'); [code=php] but it wont work, can i not use a variable like this? is there a solution? many thanks
try header('Location: ./'. $myrow[2]); die();