A mianowicie poszukuję takiego systemu oceniania +/- (coś jak na demotywatorach.pl).
Czy to się jakoś "specjalnie nazywa", albo czy zna ktoś taki skrypt

<html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <meta http-equiv="Pragma" content="no-cache" /> <meta name="Author" content="Webhosting" /> <title></title> </head> <style type="text/css"> .guziki { border:none; cursor:pointer; } input.ocena { border:none; width: auto; background-color:white; text-align: center; } </style> <script src="http://code.jquery.com/jquery-latest.min.js"></script> <script type="text/javascript"> var xmlHttp; function ajaxInit() { try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("Twoja przegladarka nie obsluguje AJAXa!"); return false; } } } } function zablokuj(id) { eval("document.images['button_plus_"+id+"'].src = 'imgs/vote_plus_unactive.gif'"); eval("document.images['button_minus_"+id+"'].src = 'imgs/vote_minus_unactive.gif'"); eval("document.images['button_plus_"+id+"'].onclick = 'void()'"); eval("document.images['button_minus_"+id+"'].onclick = 'void()'"); } function vote(id, typ) { ajaxInit(); xmlHttp.onreadystatechange=function() { if(xmlHttp.readyState==4) { a = xmlHttp.responseText; if (a != "false") { zablokuj(id); eval("document.forms[0].ocena"+id+".value = a"); } } } if (typ == 'plus') xmlHttp.open("GET","vote1.php?plus=1&k="+id,true); else xmlHttp.open("GET","vote1.php?minus=1&k="+id,true); xmlHttp.send(null); } </script> <body> <form> <?php $sql = mysqli_connect('%%%%','******','{{{{{{'); mysqli_select_db($sql,')))))))))'); $res = mysqli_query($sql,"SELECT * FROM komentarze"); while ($row = mysqli_fetch_row($res)) { } ?> </form> </body></html>