I am playing with the Dropbox api
but can't get past the first step of making it work. Any help would be great! I did try to do a thorough search on Google for my problem with no luck.
Tutorial Link -> https://www.dropbox.com/developers/core/start/php
PHP Version: 5.3.8
I am getting an error on this line:
use \Dropbox as dbx;
It is throwing this error: Parse error: syntax error,
unexpected T_USE in . . .
My code is extremely simple so far:
require_once "dropbox-sdk/Dropbox/autoload.php";
use \Dropbox as dbx;
Thanks for your help.