Home > Article > Backend Development > What should I do if a blank page appears when installing PHP website?
Solution to the blank page when installing PHP website: 1. Find and open the "php.ini" file; 2. Change the content to "short_open_tag=On"; 3. View the server through "phpinfo();" Just configure the information.
The operating environment of this tutorial: Windows 7 system, PHP version 8.1, Dell G3 computer.
What should I do if a blank page appears when installing PHP website?
Solution:
Go to winnt/php.ini and change the short_tag. Some are short_open_tag=On, because I used the simple writing method of php
<? echo phpinfo (); ?>
In fact, if short_tag=Off, it cannot be recognized, so writing
<? php echo phpinfo (); ?>
will have better compatibility.
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of What should I do if a blank page appears when installing PHP website?. For more information, please follow other related articles on the PHP Chinese website!