fix dynamic var
This commit is contained in:
parent
f2236e0a28
commit
88c227e188
|
@ -70,7 +70,8 @@ switch($_POST['act']){
|
||||||
//pour toutes les tailles de bateau
|
//pour toutes les tailles de bateau
|
||||||
for($shipWidth = 6; $shipWidth >= 0; $shipWidth--){
|
for($shipWidth = 6; $shipWidth >= 0; $shipWidth--){
|
||||||
//nombre de bateau à placer de cette taille
|
//nombre de bateau à placer de cette taille
|
||||||
$shipCount=$('ship'.$shipWidth); // #trollface
|
$dynVar='ship'.$shipWidth;
|
||||||
|
$shipCount=$$dynVar; // #trollface
|
||||||
for( $sh = 0; $sh < $shipCount; $sh++){
|
for( $sh = 0; $sh < $shipCount; $sh++){
|
||||||
$directions=array();
|
$directions=array();
|
||||||
while( count($directions) == 0){
|
while( count($directions) == 0){
|
||||||
|
|
Loading…
Reference in New Issue
Block a user