PHPINFO: Difference between revisions

From NikkiWiki
Jump to navigation Jump to search
Created page with "Resources for configuring Personal Homepage Hypertext Preprocessor Info (PHPINFO). * [https://help.dreamhost.com/hc/articles/214895287/ <cite>DreamHost Knowledge Base</cite>: "Viewing Your Site’s PHP Version and Settings"] * [https://www.php.net/manual/function.phpinfo.php <cite>PHP</cite>: "PHPINFO"] == PHPINFO for Nicole Sharp’s Website == <syntaxhighlight lang="php"> <?php phpinfo(INFO_GENERAL); phpinfo(INFO_CREDITS); phpinfo(INFO_CONFIGURATION); phpinfo(INFO_..."
 
Line 19: Line 19:


/*
/*
Personal Homepage Hypertext Preprocessor (PHP) Info for Nicole Sharp's Website.
Personal Homepage Hypertext Preprocessor Info (PHPINFO) for Nicole Sharp's Website.
2026-04-09 Nicole Sharp
Copyright (C) 2026-04-09 Nicole Sharp
https://www.nicolesharp.net/
https://www.nicolesharp.net/
Content in this file is available under the Creative Commons Attribution-ShareAlike (CC BY-SA) 4.0 International Public License.
https://www.creativecommons.org/licenses/by-sa/4.0/
*/
*/



Revision as of 2026-04-09T16:34:32

Resources for configuring Personal Homepage Hypertext Preprocessor Info (PHPINFO).

PHPINFO for Nicole Sharp’s Website

<?php

phpinfo(INFO_GENERAL);
phpinfo(INFO_CREDITS);
phpinfo(INFO_CONFIGURATION);
phpinfo(INFO_MODULES);
phpinfo(INFO_ENVIRONMENT);
# phpinfo(INFO_VARIABLES);
phpinfo(INFO_LICENSE);
# https://www.php.net/function.phpinfo.php

/*
Personal Homepage Hypertext Preprocessor Info (PHPINFO) for Nicole Sharp's Website.
Copyright (C) 2026-04-09 Nicole Sharp
https://www.nicolesharp.net/
Content in this file is available under the Creative Commons Attribution-ShareAlike (CC BY-SA) 4.0 International Public License.
https://www.creativecommons.org/licenses/by-sa/4.0/
*/

?>