Hello Folks!
I'm calling a perl, cgi script using virtual() into a php script to add header/footers, works great.
Is this possible,
I think I'd like to be able to parse the cgi variables after the perl script is complete and then parse it to the php script.
variable in the PERL script
$fontcolor = "\"#FFFFFF\"";
In the header is a global $ThemeFontColor;
change to something like (but this doesn't work)
$fontcolor = "<?php echo($ThemeFontColor)?>";
Any thoughts?
Thanks