So...
'K, this really isn't a problem but just
something I'm curious about.
1) I'm new to this.
2) I'm writing a script and on line say, 20
I code this:
if ($this_var != $that_var){
die ("HEY! this does NOT equal
that");
Now when I set the two vars to not equal it should die at line 23 or so.
BUT... While debugging (in an IDE program) I
got a parse error on line 87. I had neglected
to end a prior line with a semi-colon.
After fixing the semi-colon issue the script
ran fine and died appropriatly, but why did
it continue to run AFTER it should have died at line 23? I mean how did it find the parse
error on line 87 when it should have died on
line 23?
See what I mean?
Just curious-
Scott