Ben php kullanarak rasgele tırnak üreten bir facebook uygulaması wrtie çalışıyorum. Ancak, ben bu hatayı alıyorum ve bunu sıralamak nasıl bilmiyorum.
Ayrıştırma hatası: 8. satırda / home/a9607557/public_html/index.php sözdizimi hatası, beklenmedik T_STRING
Elimdeki kodu:
<?php require_once 'includes/facebook.php';
$appapikey = '<Hash>';
$appsecret = '<Hash>;
$facebook = new Facebook($appapikey, $appsecret);
$user_id = $facebook->require_login();
$callbackurl = 'http://newuser.hostei.com/';
//initialize an array of quotes $quotes= array("Hello World.", "Yes", "New");
//Select a Random one. $i= rand(0, sizeof($quotes)-1);
I'm sure the problem must be lying in these lines of code. Thanks for any help.