i ran the phpinfo script and noticed that my server is using "PHP Version 4.4.1" while my local host is running "PHP Version 5.2.0".
But let me further explain what's happening though. It doesn't seem to be even running the php. An outline of my document looks like this:
beginning html
1st php block
mid html
2nd php block
ending html
when accessed, it reads the beginning html and stops. nothing is in the source file after that. it's a sudden stop. is that due to the difference in php versions?
also i added this to the top of the first php block and nothing changed:
ini_set('display_errors', 'On');
ini_set('error_reporting', 'E_ALL');
and thanks for the help!!