Notice: Undefined variable: auction in /var/www/vhosts/*****/httpdocs/***.php on line 8
line 8 is
while($auction==FALSE)
this table does exsist in sql
this table has many othe columns
i know very little please speak in laymans terms i could really use help with this i get a email every minute this file is ran by cronjob and it sends these emails every time it runs
i also get these errors in same email
PHP Notice: Use of undefined constant from_email - assumed 'from_email' in /var/www/vhosts/***.com/httpdocs/config/.inc.php on line 48 PHP
Line 48 is
$adminemailadd = $row[from_email];
this is the config file for site its also where you set DB connect settings its like its not pulling it from sql because this to is a valid field
Notice: Undefined index: language_name in /var/www/vhosts/.com/httpdocs/config/config.inc.php on line 54 PHP Notice: Undefined index: language_name in /var/www/vhosts/.com/httpdocs/config/config.inc.php on line 59 PHP Notice: Undefined index: language_name in /var/www/vhosts/.com/httpdocs/config/config.inc.php on line 63 PHP
and these are related to these lines
if($_SESSION["language_name"]=="GR")
{
include("/var/www/vhosts/.com/httpdocs/language/lang1.php");
}
if($SESSION["language_name"]=="EN")
{
include("/var/www/vhosts/.com/httpdocs/language/lang2php");
}
elseif($SESSION["language_name"]=="SP")
{
include("/var/www/vhosts/.com/httpdocs/language/lang3.php");
}
else
{
$_SESSION["language_name"]="EN";
include("/var/www/vhosts/.com/httpdocs/language/lang4.php");
}
?>