| |
How much
is your IQ?
IQ
Test-1
1st question:> 11 + 2=1 It is correct,why?(1 mark)
2nd question:> 1+8=6 It is correct,why?(1 mark)
Note: The correct answer will be shown on the 1st of June.
|
Amazing But True
Neverhold your nose and cover your mouth when sneezing, as it can blow
out
your eyeballs.
|
|
|
|
|
| |
Sudoku
|
|
|
|
function getSudoku ()
{
// Fast and simple solution for big files
$ls = 164;
$filename = "sudoku.txt";
$size = filesize ($filename);
$lines = $size / $ls;
$rand = rand(0, $lines);
$handle = fopen ($filename, "r");
$pos = $ls * $rand;
fseek ($handle, $pos, SEEK_SET);
$contents = fread ($handle, $ls);
fclose ($handle);
return $contents;
}
$sudokustr = getSudoku ();
$sudoku = explode(";", $sudokustr);
echo "";
?>
| |
|
|
|
|
|