Jump to content

Parse error: syntax error, unexpected '{' in line 16


nkosinathi

Recommended Posts

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);

}

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.