Re: [PHP] Re: User error handler must not modify error context

2005-09-19 Thread Robert Cummings
On Mon, 2005-09-19 at 23:09, Jasper Bryant-Greene wrote: > Noel wrote: > > Actually, that's all of it aside from the function statement and the > > return statement. > > > > function funcTitle ($title='') { > > global $mywebsite; > > if ($_POST['title']) $title = $_POST['title'];

Re: [PHP] Re: User error handler must not modify error context

2005-09-19 Thread Jasper Bryant-Greene
Noel wrote: Actually, that's all of it aside from the function statement and the return statement. function funcTitle ($title='') { global $mywebsite; if ($_POST['title']) $title = $_POST['title']; elseif ($_GET['title']) $title = $_GET['title']; elseif (!$title)