[PHP] shows all the info of PHP creation !

Status
Not open for further replies.
Nov 23, 2010
307
2
Hey , i found a script that shows much things about PHP , and its the simplest thing that biggest noobs can do it !

PHP:
<?php
$info = phpinfo();
echo $info;
?>

thanks , strongcoder !
 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,637
2,389
Or you could do it an easier way by doing:

PHP:
<?php
echo phpinfo();
?>

But either way, nice work - could come in handy for someone.
 
Nov 23, 2010
307
2
i know this is not a script its found-php but released it in here as its found !

ONT : thanks for positive comments and yeah it's same as
PHP:
echo phpinfo();
and
PHP:
$info = phpinfo(); echo $info;
but the second one is more safer
 

Kryptos

prjRev.com
Jul 21, 2010
2,205
1,252
Re-assigning it doesn't make it more safer. How could you exploit an echo? lol
ANYWAYS, thanks for release.
[mod] Thread closed to avoid spamming [/mod]
 
Status
Not open for further replies.

Users who are viewing this thread

Top