I've been looking around for this problem for a while...I'm stumped.
I have a small script which is working on my PHP4 server but the variables don't pass on the PHP5 installation.
On the PHP5 installation I do have Global Variables turned on.
Both installs are PHP running on IIS6 Win 2K3
The output portion of the script is:
echo "<font face=verdana size=1> Now Playing: $text[6]</font>";?>
Displays to:
Now Playing: $text[6] ";?>
Here's some of my phpInfo
realpath_cache_ttl 120 120
register_argc_argv On On
register_globals On On
register_long_arrays On On
report_memleaks On On
report_zend_debug On On
Is there something in the PHP.ini file which I need to turn on to pass this variable?
Any help would be appeciated.
S