It looks like you may have written your code assuming register_globals = on which would explain why this part:
if (!isset($page_title) || $page_title == "") { $page_title = $page_title['Design Delineations']; }
isn't working.
If you haven't already, turn off register_globals in your php.ini.
Then use the superglobal $POST with your form submissions:
if (!isset($_POST['page_title']) || $_POST['page_title'] == "") { $page_title = $_POST['Design Delineations']; }
I don't know for sure if "page_title" or "Design Delineations" are form variables without looking at your actual form.