nkosinathi Posted January 23, 2008 Share Posted January 23, 2008 Parse error: syntax error, unexpected '{' in C:\hshome\xxxxxxx\index.php on line 13 <?php require_once 'gateway.php'; $firststring = abcde; $secondstring = fghij; $gateway= new Gateway($firststring , $secondstring); $user = $gateway->require_login(); //[todo: change to the following url to your callback url] $urltothegateway = "http://sysconsolutions.co.za/vuvuzela"; //catch the exception that gets thrown if the cookie has an invalid session_key in it try //Below is line 16 { if (!$gateway->api_client->users_isAppAdded()) { $gateway->redirect($facebook->get_add_url()); } } catch (Exception $ex) { //this will clear cookies for your application and redirect them to a login prompt $gateway->set_user(null, null); $gateway->redirect($urltothegateway); } ?> Link to comment https://forums.phpfreaks.com/topic/87358-parse-error-syntax-error-unexpected-in-line-16/ Share on other sites More sharing options...
Dada78 Posted January 23, 2008 Share Posted January 23, 2008 Read the error carefully Parse error: syntax error, unexpected '{' Which means you have an extra { or a bracket like that that is not closed or inserted properly. Link to comment https://forums.phpfreaks.com/topic/87358-parse-error-syntax-error-unexpected-in-line-16/#findComment-446832 Share on other sites More sharing options...
rajivgonsalves Posted January 23, 2008 Share Posted January 23, 2008 which version of php are you using ? Link to comment https://forums.phpfreaks.com/topic/87358-parse-error-syntax-error-unexpected-in-line-16/#findComment-446834 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.