Notes for Nicole Sharp's Website: Difference between revisions

From NikkiWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 124: Line 124:


* https://www.php.net/manual/language.basic-syntax.comments.php
* https://www.php.net/manual/language.basic-syntax.comments.php
=== PHP info ===
* [https://help.dreamhost.com/hc/articles/214895287/ "Viewing Your Site’s PHP Version and Settings"]
* [https://en.wikibooks.org/wiki/PHP_Programming/Setup_and_Installation#How_Do_I_Know_My_Setup_is_Working? https://en.wikibooks.org/wiki/PHP_Programming/Setup_and_Installation#How_Do_I_Know_My_Setup_is_Working?]
* https://www.php.net/phpinfo/
* <span class="plainlinks">https://www.nicolesharp.net/info.php</span>
<syntaxhighlight lang="php">
<?php
phpinfo(INFO_GENERAL);
phpinfo(INFO_CONFIGURATION);
phpinfo(INFO_MODULES);
phpinfo(INFO_ENVIRONMENT);
phpinfo(INFO_CREDITS);
phpinfo(INFO_LICENSE);
# Personal Homepage Hypertext Preprocessor Info (PHPINFO) for Nicole Sharp's Website.
# 2025-01-20 Nicole Sharp
# https://www.nicolesharp.net/
# https://www.nicolesharp.net/info.php
?>
</syntaxhighlight>


[[category:Nicole Sharp's Website]]
[[category:Nicole Sharp's Website]]

Revision as of 2025-01-20T08:54:43

Notes on the development of Nicole Sharp’s Website.

KeePass

LibreOffice

DreamHost

WHOIS

FileZilla

Notepad Plus Plus

PHP

PHP version

  • PHP 8.4
    • 2025-01-16. Elgg 6.1.2
    • 2024-12-21. MediaWiki 1.43.0 LTS (Long-Term Support Release)
    • 2024-12-12. Matomo 5.2.1
    • 2024-11-21. PHP 8.4
  • PHP 8.3
    • 2024-11-20. Elgg 5.1.12 LTS
    • 2023-11-23. PHP 8.3

PHP manual

PHP basics

PHP encoding

declare(encoding = "UTF-8");

PHP comments

PHP info

<?php

phpinfo(INFO_GENERAL);
phpinfo(INFO_CONFIGURATION);
phpinfo(INFO_MODULES);
phpinfo(INFO_ENVIRONMENT);
phpinfo(INFO_CREDITS);
phpinfo(INFO_LICENSE);

# Personal Homepage Hypertext Preprocessor Info (PHPINFO) for Nicole Sharp's Website.
# 2025-01-20 Nicole Sharp
# https://www.nicolesharp.net/
# https://www.nicolesharp.net/info.php

?>