我想做一个这样的数组
$array = array("'firstName1', 'lastName1'", "'firstName2', 'lastName2'", ......);
我总是收到这样的错误:
解析错误:语法错误,意外的 'while' (T_WHILE),期待 ')' 在 C:\wamp\www\Tests\index.php 第 11 行
<!doctype html>
<html>
<head>
<meta charset="utf=8">
</head>
<body>
<?php
if(isset($_POST['reg'])){
$x=1;
$a = array(
while($x<=10):
"'firstName$x', 'lastName$x'"; //I DONT KNOW WHAT TO DO IN THIS LINE//
$x++;
endwhile;
);
print_r($a);
}
?>
<form action="" method="post">
<input type="text" name="number" /> <input type="submit" name="submit" value="Submit"/>
</form>
<form action="" method="post">
<table>
<?php
if(isset($_POST['submit'])){
for($i=1;$i<=$_POST['number'];$i++){
echo "<tr>
<td><input type='text' name='firstName$i' /></td>
<td><input type='text' name='lastName$i' /></td>
</tr>";
}
$i-=1;
echo "<input type='hidden' name='hide' value='$i' />";
}
?>
</table>
<input type="submit" value="Register" name="reg"/>
</form>
</body>
</html>