Ok, a few things:
- What's with the colon at the beginning of the line
- Use the following syntax for the if statement:
if(condition)
{
action
}
or
if(condition):
action
endif;
- When using pre-defined variables, encapsulate the variable name within ' '
See below for an example of how I think it should look:
if($_GET['CO'] || $_POST['userform'])
{
if(!@include scripts_dir.'includes/process_user_form.inc.php')
{
include ('../includes/process_user_form.inc.php');
}
}
Hope this helps (and works)