对不起,如果这是重复的帖子,但不知怎的,我不能让我的循环使用变量。如果我在foreach中回应这个我得到我的数据,但如果我使用变量我只获取数据中的第一个项目的数据。
我的代码`
$user - My arrray
$count = $user['count'];
$echo = "";
foreach($user as $val => $key)
{
if($val == 'true')
{
for($x = 0; $x < $count; $x++)
{
$name = $user[$val][$x]['name'];
$id = $user[$val][$x]['id'];
$staatus = $user[$val][$x]['status'];
$feed = $user[$val][$x]['feed'];
/* Now when am using only echo, instead of $echo it will work flawlessly,
but i want to echo it using an variable called $echo.
I call the variable on my html page where the forms are,
but i'm only getting data for the first element.
Short, i want to display my data under the form.*/
$echo = "
<table class='table'>
<tr>
<th>NIMI</th>
<th>ID</th>
<th>STAATUS</th>
<th>FEED</th>
</tr>
<tr>
<td>$name</td>
<td>$id</td>
<td>$staatus</td>
<td>$feed</td>
</tr>
</table>
";
}
}
}
<?php echo $echo; ?> for calling.
我是这个人的初学者,所以也许有人可以提供帮助。我也四处搜寻,尝试了不同的东西,但它没有用。我还试图在没有for循环的情况下显示数据,但它也没有工作。
如果我可以对我的代码进行任何改进,请告诉我。比如缩短等等,我在这里改进,为什么不呢:D
答案 0 :(得分:1)
您错过了.
$echo .= "
$echo .= "
<table class='table'>
<tr>
<th>NIMI</th>
<th>ID</th>
<th>STAATUS</th>
<th>FEED</th>
</tr>
<tr>
<td>$name</td>
<td>$id</td>
<td>$staatus</td>
<td>$feed</td>
</tr>
</table>
";