Re: PHP Notice Problem
On Wed, 15 Oct 2008 17:10:16 +0000 (UTC), "UteFanJason"
<webforumsuser@macromedia.com> wrote:
> $search = $_GET['search'];
> $self = $_SERVER['PHP_SELF'];
> if ($search != NULL)
> {
Change the above to:
$self = $_SERVER['PHP_SELF'];
if (!isset($_GET['search']))
{
$search = $_GET['search'];
Gary
|