I have already written in someone's blog that the default WAMP settings don't allow to use short open tags for PHP scripts, i.e. "<?"
You need to enable this possibility in php.ini and also enable "display_errors" to be able to see the errors explanations where you normally see blank screen.
So, specify the following in php.ini:
short_open_tag On
display_errors On
I have already written in someone's blog that the default WAMP settings don't allow to use short open tags for PHP scripts, i.e. "<?"
You need to enable this possibility in php.ini and also enable "display_errors" to be able to see the errors explanations where you normally see blank screen.
So, specify the following in php.ini:
short_open_tag On
display_errors On