probe pero no registra :( , mira esta asi mi codigo:
Código PHP:
<?
include("config.php");
$silla = mysql_query("SELECT * FROM puntos");
$num_tuplas = mysql_num_rows($silla);
if(!num_tuplas){
mysql_query("INSERT INTO puntos (id_usuario, nombre_post, id_post) VALUES ('$_GET[id_usuario]', '$_GET[nombre_post]', '$_GET[id_post]')");
mysql_query("UPDATE puntos SET puntos=(puntos+$_GET[puntos])");
echo'<script>
alert("Puntos agregados");
</script>';
}
mysql_query("UPDATE puntos SET puntos=(puntos+$_GET[puntos])");
echo'<script>
alert("Puntos agregados");
</script>';
?>