hi have cuurently installed wampserver(bundle of php, web server and mysql) and have installed a pre made script. the problem is that when i run the script it wont run properly. on going thorugh the details i have foun out that script is using this method to echo variables:
this does not work
<?=$VariableName?>
if changed to this it starts working
<? echo $VariableName?>
and this is not working on my server. and when i convert it back to "echo" it starts working my problem is that the scrip is a multi page script and it would take up hell of time to change to "echo" in all pages. i think i am missing some extension or something can anyone help me to get this problem fixed.