何が間違っていますか?PHPを使用してデータベースからデータをフェッチしているときに "Undefined index:username"というエラーが表示される
$query = "select name from tabl ";
if($run = mysqli_query($con,$query)){
while($row = mysqli_fetch_assoc($run)) {
echo $row['name'].'<br>';
echo $row['username'];
}
values in the name index are shown. i'm getting this error for username here is the database
に変更してください。 – epascarello
データベースクエリで「username」を選択していません。 – cosmoonot
[PHP: "Notice:未定義変数"、 "Notice:未定義インデックス"、 "Notice:Undefined offset"](http://stackoverflow.com/questions/4261133/php-notice-undefined-variable- notice-undefined-index-and-notice-undef) – Qirel