Whats going wrong here....the browser can't find the page.
$newplace = "own_projects2.php?project_id=$project_id"; Header('Location: $newplace');
Cheers Matt
use double quotes on the second line of your code -- php won't process variables if they are in single quotes.
Thanks