Hallo Forum-hilfe nutzer,
ich habe folgende problem bei abfragen der pagerank:
dies ist das url der abgefragt werden soll,
{$p.story}
doch ich bekomme diese fehler meldung:
Parse error: syntax error, unexpected '.', expecting '}'
like.tpl:
PHP
<div width="565" style="padding:4px 6px 5px;text-align:left;vertical-align:top;">
<b>Beschreibung:</b>
{php}
//Create Object
$url = "{$p.story}";
$width = "200";
$method = "css"; //image or css
$image_location = "images/";
$url = isset($_GET['url']) ? $_GET['url'] : $url;
$width = isset($_GET['width']) ? $_GET['width'] : $width;
$method = isset($_GET['method']) ? $_GET['method'] : $method;
$image_location = isset($_GET['image_location']) ? $_GET['image_location'] : $image_location;
//Css methos
$obj = new pr($url,$method,$width,$image_location);
echo "<p>".$obj->pagerank()."</p>";
{/php}
</div>
Alles anzeigen
bitte helfen.