HTML interesse |
|
Voer anders even een phpinfo bestand uit op je host en zoek daar je path op.
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);
?>
<?php // Show all information, defaults to INFO_ALL // Show just the module information. // phpinfo(8) yields identical results. ?>
|