Re: Help with Undefined Variable

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 05/10/2024 17:34, Steve Matzura wrote:
foreach ($shows as $showcode => $showname) {

    if (file_exists("$archive_dir/$showcode")) {
        $archived = true;
        if ($debug) {
            $msg_text .= "Debug: $showname is archived.\n";
        $updated = get_archive_last_updated($showcode);
        $updated_time = $updated["time"];
        $updated_file_date = $updated["file_date"];
    } else {
        $archived = false;
        $updated_time = get_last_updated($showcode);
    }
}

Why would PHP think this variable is undefined?

the above code snippet is missing a closing brace '}' - I presume ```if ($debug)``` block is the problem area maybe? Fix that and the error may get resolved



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux