Originally posted by DeadFly
There is none.
The code just stops . . .
Now there was a warning sayign that I couldn't send header() information after data had already been sent to the browser, but I suppressed that with
ini_set(error_reporting, "E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR");
errors appear for a reason,
the error means that you are calling some function that sends headers to the browser,
when the headers are already sent, php cant send the headers any more..
and then the script stops,
with that error.
since you disabled the error,
the script stops without telling you why.
functions that require no header to be send:
setcookie
session_start
header
and others :p
sow
ini_set(error_reporting, "E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR");
remove that line,
and fix your code