gpt4 book ai didi

javascript - PHP 错误 : undefined variable

转载 作者:行者123 更新时间:2023-11-28 11:05:11 25 4
gpt4 key购买 nike

谁能告诉我我的错误是什么?我知道它只是注意到。一切正常,但只显示此通知。如何解决这个问题? :

这是代码:

if (isset($_GET['match']) && $_GET['match'] == 'one') {
$checked_match_one = ' checked="checked"';
$page_string .= SEP.'match=one';
} else {
$_GET['match'] = 'all';
$checked_match_all = ' checked="checked"';
$page_string .= SEP.'match=all';
}

它告诉我的错误:

Notice: Undefined variable: page_string in C:\xampp\htdocs\msigilearnv2\admin\enrollment_attendance.php on line 110
Done writing the list into excel. Download

最佳答案

Simple.Initialize $page_string 在使用它之前(我们可以说在 if 语句之前)就像

$page_string = '';
if (isset($_GET['match']) && $_GET['match'] == 'one') {
$checked_match_one = ' checked="checked"';
$page_string .= SEP.'match=one';
}

关于javascript - PHP 错误 : undefined variable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22805893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com