Hi, I have created my first PHP site which is used for education. (PHP, iis 6, mysql). It has a logging page. when you logg on it opens a new page and loads many flash files and saves the answers to databas. sometimes it does not loads the flash files and when I close the new page to go back to logging page and Logg on again the new page will be white and it works and works, nothing happend. Thanks for your help.
i think the default php.ini on IIS when you use their installer has short tags disabled, just enabled it. short tag: <?=$variable?> <? /* php code here */ ?> Code (markup): long tags: <?php /* php code here */ ?> Code (markup):
Please double check the memory limit in php.ini too. Sometimes if it lacks of memory, it will only display white page. To see any error message related to the above problem, insert this line in the beginning of your code: error_reporting(E_ALL); PHP: