A
aydesign
Guest
Hi,
habe ein rating script per Tutorial zusammen gebaut:
und würde gerne statt den Links zum voten das ganze über mein star-css-menü anzeigen lassen....
aber immer wenn ich es im code einfügen will zeigt er mir einen Fehler an. Ich hab es mit Echo " ..... "; eingefügt.
Hoffe mir kann jemand helfen! :'(
Danke im Voraus
habe ein rating script per Tutorial zusammen gebaut:
PHP:
<?php
mysql_connect("******", "*******", "*******") or die(mysql_error());
mysql_select_db("*******") or die(mysql_error());
$data = mysql_query("SELECT * FROM vote") or die(mysql_error());
if(isset($_GET["mode"])) {
$mode=$_GET["mode"];
$voted = $_GET[voted];
$id = $_GET[id];
}
if ( $mode=="vote")
{
if(isset($_COOKIE[$cookie]))
{
Echo "Sorry You have already ranked that site <p>";
}
else
{
$month = 2592000 + time();
setcookie(Mysite.$id, Voted, $month);
mysql_query ("UPDATE vote SET total = total+$voted, votes = votes+1 WHERE id = $id");
Echo "Your vote has been cast <p>";
}
}
while($ratings = mysql_fetch_array( $data ))
{
Echo "Name: " .$ratings['name']."<br>";
$current = $ratings[total] / $ratings[votes];
Echo "Current Rating: " . round($current, 1) . "<br>";
Echo "Rank Me: ";
Echo "<a href=".$_SERVER['PHP_SELF']."?mode=vote&voted=1&id=".$ratings[id].">Vote 1</a> | ";
Echo "<a href=".$_SERVER['PHP_SELF']."?mode=vote&voted=2&id=".$ratings[id].">Vote 2</a> | ";
Echo "<a href=".$_SERVER['PHP_SELF']."?mode=vote&voted=3&id=".$ratings[id].">Vote 3</a> | ";
Echo "<a href=".$_SERVER['PHP_SELF']."?mode=vote&voted=4&id=".$ratings[id].">Vote 4</a> | ";
Echo "<a href=".$_SERVER['PHP_SELF']."?mode=vote&voted=5&id=".$ratings[id].">Vote 5</a><p>";
}
?>
Code:
<ul class='star-rating'>
<li><a href='#' title='1 star out of 5' class='one-star'>1</a></li>
<li><a href='#' title='2 stars out of 5' class='two-stars'>2</a></li>
<li><a href='#' title='3 stars out of 5' class='three-stars'>3</a></li>
<li><a href='#' title='4 stars out of 5' class='four-stars'>4</a></li>
<li><a href='#' title='5 stars out of 5' class='five-stars'>5</a></li>
</ul>
Hoffe mir kann jemand helfen! :'(
Danke im Voraus