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

}

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.