2015-12-12 10:33:33 +01:00
|
|
|
<?php
|
2015-12-12 13:29:37 +01:00
|
|
|
switch($_POST['act']){
|
|
|
|
case "init":
|
2015-12-12 19:10:15 +01:00
|
|
|
$wantedVars=array(
|
|
|
|
'match_id' => false, //false-> string ; true -> integer
|
|
|
|
'opponent' => false,
|
|
|
|
'width' => true,
|
|
|
|
'height' => true,
|
|
|
|
'ship1' => true,
|
|
|
|
'ship2' => true,
|
|
|
|
'ship3' => true,
|
|
|
|
'ship4' => true,
|
|
|
|
'ship5' => true,
|
|
|
|
'ship6' => true
|
|
|
|
);
|
|
|
|
foreach($wantedVars as $key => $shouldBeInteger){
|
|
|
|
if(($shouldBeInteger) && (!is_numeric($_POST[$key]))){
|
|
|
|
echo "var is not numeric"; die;
|
|
|
|
}
|
|
|
|
$$key=$_POST[$key];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-12 13:29:37 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|