Tengo el siguiente codigo que es para evaluar x producto, y creo que algun detalle en el codigo.
Código:
<script type="text/javascript" language="javascript">
var app = new SWFObject("../swf/Rating.swf", "Rating", 220, 20, 8, "#ffffff");
<?php$rater_ip = getenv("REMOTE_ADDR");
echo "app.addVariable('remoteIp','$rater_ip');";
?>app.addVariable("locale","ES");
app.addVariable("articleId","5");
app.addVariable("getRatingUrl","http://www.mydomain.com/getRating.php");
app.addVariable("addRatingUrl","http://www.mydomain.com/addRating.php");
app.write("appcontent");
</script>
pero este no se si es que se mete adentro de este
Código:
<div id="appcontent"></div>
y lo siguiente no se si lo coloque bien , que viene siendo el get del asunto
Código:
<rating>
<avg>$avg</avg>
<votes>$count</votes>
<hasVote>$hasRate</hasVote>
</rating>
Código:
<rating>
<avg>$avg</avg>
<votes>$count</votes>
</rating>
esto ultimo lo tengo dentro del codigo donde muestro una matriz de los productos, para que asi el usuario tenga la opcion de evaluar el prodructo que quiera.