This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tetris.c: In function ‘pdots’: | |
tetris.c:223: warning: incompatible implicit declaration of built-in function ‘abort’ | |
tetris.c:275: warning: incompatible implicit declaration of built-in function ‘abort’ | |
tetris.c: In function ‘draw’: | |
tetris.c:283: warning: incompatible implicit declaration of built-in function ‘abort’ | |
tetris.c:292: warning: incompatible implicit declaration of built-in function ‘abort’ | |
tetris.c: In function ‘move’: | |
tetris.c:300: warning: incompatible implicit declaration of built-in function ‘abort’ | |
tetris.c:338: warning: incompatible implicit declaration of built-in function ‘abort’ | |
tetris.c: In function ‘showtop’: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$res_pass = mysql_query("START TRANSACTION",$userconnect); | |
$res_correct = mysql_query($correct,$userconnect); | |
$correctanswer = array(); | |
while ($row = mysql_fetch_row($res_correct)) { | |
$correctanswer[] = $row; // Заполняем массив правильных ответов | |
} | |
$saved = json_encode($correctanswer); | |
$res_pass = mysql_query("ROLLBACK",$userconnect); //Откат на точку возврата | |
$res_answer = mysql_query($useranswer,$userconnect); |
NewerOlder