他には使用しないでください。
if($c_users->count()>0){
echo '<table>
<tr>
<th>firstname</th>
<th>lastname</th>
<th></th><th>
</tr>';
foreach($get_users1 as $user)
{
echo '<tr>
<td>' . $user['firstname'] . '</td>
<td>' . $user['lastname'] . '</td>
<td><a href="update_user.php?edit=' . $user['_id'] . '">Modifier</td>
<td><a href="delete_user.php?delete='.$user['_id'].'" onclick="return confirm(\'Do you really want to delete this user ?\')">Supprimer</td>
</tr>';
}
echo '</table>';
} else {
echo 'This name is not found in database !';
}
まだ動作していません。 – Diasline
'empty($ get_users1)'を 'empty($ c_users) 'に変更するとどうなりますか? (私はMongoDBを使ったことは一度もありませんでした)しかし、 '$ get_users1'は空ではないと私が言うことができます。 – Sebastian
まだ動作していません – Diasline