phpinfo() shows nothing
Today I want to show you how to output the phpinfo().
2013-09-13 00:00:00 2022-12-05 00:00:00 Webmasterfreaky
In today's tutorial I will show you how to retrieve the phpinfo().
Creates a file and names it when saving info.php
This is how the code should look like:
<?php
phpinfo();
?>
Now load this into your main directory of the desired page and call it on http://deinedomain.tld/info.php.
Questions & Answers
I do not get any info displayed. What should I do now?
In php.ini under disable_function the output of phpinfo() should be disabled. Just remove phpinfo() out of there. It should work already.
Ratings
Here you can write a comment
Related topics
Anzeige des letzten Besuchers auf der Website
PHP und MySQL ermöglichen es, mit wenig Aufwand Datum und Uhrzeit des letzten Besuchers auf der Homepage anzeigen zu lassen. ...

Autor :
Lukas Beck
Category:
PHP-Tutorials
Gästebuch mit Datenbankanbindung
Dieses Tutorial beschreibt ausführlich wie ein Gästebuch in PHP und mySQL programmiert wird. ...

Autor :
andy@
Category:
PHP-Tutorials
grafischen Counter
Oftmals wird gefragt wie man einen grafischen Counter mit PHP realisieren könnte. Hier ist die Antwort ...

Autor :
t63@
Category:
PHP-Tutorials
Migration einer PHP 5 App auf PHP 7
Dieses PHP 7 Tutorial zeigt dir, wie du dein PHP5 Script auf PHP7 umstellst. ...

Autor :
admin
Category:
PHP-Tutorials
MySQL für Anfänger einfach erklärt
Dieses Tutorial richtet sich an Anfänger, die noch nie mit SQL gearbeitet haben. Vielleicht ist aber auch für Fortgeschrittene das Eine oder Andere dabei. ...

Autor :
admin
Category:
mySQL-Tutorials
Basics of views in MySQL
Views in a MySQL database offer the option of creating a virtual table based on the result of an SQL query. This virtual table can be queried like a normal table without changing the underlying data. ...

Autor :
admin
Category:
mySQL-Tutorials