Commit 022d06

2024-04-27 04:24:24 Arpan S.: -/-
nginx.md ..
@@ 33,3 33,12 @@
}
```
+
+ ### Creating phpinfo() page
+ The `phpinfo()` function in php outputs a number of important but compromizing details about the php enviroment that the script is running on. It can be used to troubleshoot or fetch info about the server. This script can be simply made by creating a file with any name with the `.php` extension & putting then following into it:
+ ```php
+ <?php
+ phpinfo( );
+ ?>
+ ```
+ After this, Navigate to the URL and the `phpinfo()` page should open.
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9