알림: 정의되지 않은 변수: 14ca 행의 C:\wamp\www\project\index.php에 nom_variable 이 오류는 무엇을 의미하며 어떻게 수정합니까?
foreach ($item로 $array) {count 변수가 설정되지 않았으며, 이 경우 error 정의되지 않은 변수 나타납니다.
// 뭔가를 합니다
$count++;
}
$count=0;예제 2:
foreach ($item로 $array) {
// 뭔가를 합니다
$count++;
}
session_start();session_start() 그렇지 않으면 서버가 변수를 식별하고 읽을 수 없습니다. $_SESSION.
// 권장 솔루션
$nom = $_SESSION['nom_utilisateur'];
if (비어 있음($nom_사용자)) $nom_user = '';
또는
// index.php
$nom = '';
$nom = $_SESSION['nom_utilisateur'];
또는
$nom = $_SESSION['nom_utilisateur'];
if (!isset($nom_user)) $nom_user = '';
Please disable your ad blocker and refresh the window to use this website.