Hi,
ich bin echt zu blöde für sowas... ich find diesen fehler net.
hoffe ihr könnt mir helfen...
detail.php
vote.html
functions.php
woran liegts nur?
die ip wird net eingetragen
vorher wurde se eingetragen, aber trotzdem hats net gefunzt
BIG THX for your help
ich bin echt zu blöde für sowas... ich find diesen fehler net.
hoffe ihr könnt mir helfen...
detail.php
PHP-Code:
// Voten + IP-Sperre
if($vote1="send") vote_count($id,$HTTP_SERVER_VARS["REMOTE_ADDR"],$voting);
PHP-Code:
<tr>
<td colspan=3></td>
</tr>
<tr>
<td colspan=3>
<table align=center>
<tr>
<td></td>
<td align=left>
Bewertung: <form name=vote1 method=POST>
<select name="voting">
<option value="10">10 Punkte - Sehr gut</option>
<option value="9">09 Punkte</option>
<option value="8">08 Punkte</option>
<option value="7">07 Punkte</option>
<option value="6">06 Punkte</option>
<option value="5">05 Punkte - Durchschnittlich</option>
<option value="4">04 Punkte</option>
<option value="3">03 Punkte</option>
<option value="2">02 Punkte</option>
<option value="1">01 Punkte - Schlecht</option>
</select>
<input type=submit name=send Value=OK>
</form>
</td>
<td></td>
</tr>
</table>
</td>
</tr>
PHP-Code:
function vote_count($id,$ip,$voting){
$stime = "7200";
$time = time();
$time3 = $time - $stime;
mysql_query("DELETE FROM counter WHERE vote_time <= ".$time3);
//Abfrage ob die spacke schon bewertet hat
$temp = mysql_query("SELECT vote,vote_ip,vote_time FROM counter WHERE vote='$id' AND vote_ip='$ip'");
$temp1 = array();
$temp1 = mysql_num_rows($temp);
if (!$temp1[1] >= "1"){
// neuer Eintrag
mysql_query("INSERT INTO counter(vote,vote_ip,vote_time) VALUES('$id','$ip','$time')");
$sql = mysql_query("Select vote,rating From movies Where id='$id'");
$result = mysql_fetch_array($sql);
$rating1 = $result[1]+1;
$voting1 = $result[0]+$voting;
echo " ".$rating1." ".$voting1;
$input = mysql_query("Update movies Set vote='$voting1',rating='$rating1' Where id='$id'");
//$sql3 = mysql_query("Select vote From $ps_tipps Where id='$id'");
//$result3 = mysql_fetch_array($sql3);
}
}
die ip wird net eingetragen
vorher wurde se eingetragen, aber trotzdem hats net gefunzt
BIG THX for your help
Kommentar