Hi.
I am getting this error:
Parse error: parse error in C:\Program Files\Online Services\Apache2\htdocs\searchexample15.php on line 27
Line 27:
include 'search.php';
Thanks for any help to fix this problem.
[code=php]
<?php
if (!isset($_POST['submit']) or trim($_POST['searchstring']) === '' )
{
if(trim($_POST['searchstring'] === ''))
{
include 'error.php';
}
?>
<form >
</form>
<?php
}
else
{
include 'search.php';
}
?>
<form >
</form>
<?php
}
}
?>
[/code]