Parse error: syntax error, unexpected ','

I am still learning php but have come accross a problem I can’t figure out. The error is: Parse error: syntax error, unexpected ‘,’ on line 69. below I have listed lines 61 - 72

if ( !isset( $_REQUEST['page'] ) ) { $GLOBALS['_REQUEST']['page'] = 0; } if ( !isset( $_REQUEST['b'] ) && !is_numeric( $_REQUEST['b'] ) ) { $GLOBALS['_REQUEST']['b'] = 0; } ( $user_id, $language_id, $_REQUEST['b'], $_REQUEST['page'] ); --This is line 69 $browse = new Browse_ads( ); $browse->main( $db ); }

Could some one please point out where I may have gone wrong?

Thanks in advance

wtf is this line doing anyway ?

    ( $user_id, $language_id, $_REQUEST['b'], $_REQUEST['page'] );

?

Sponsor our Newsletter | Privacy Policy | Terms of Service