![]() |
System Information - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: System Information (/showthread.php?tid=13203) |
System Information - El Forum - 11-14-2008 [eluser]Lazos[/eluser] Hi. Do you know any script or something that can help me to develop a page with the important system information for my CMS. For example root path, php version, mysql version, server software, operating system, maximum post size, memory limit, GD version,..... System Information - El Forum - 11-14-2008 [eluser]El EmiZ[/eluser] It's just a one line file (like phpinfo.php) =P... Code: <?php phpinfo(); ?> ![]() System Information - El Forum - 11-14-2008 [eluser]Lazos[/eluser] Yes yes you are right about that, just I want to use some of the info and put them in a custom template. Can I extract them somehow? System Information - El Forum - 11-14-2008 [eluser]El EmiZ[/eluser] Just check http://ar2.php.net/manual/en/function.phpinfo.php comments at the bottom of page. There are some user scripted methods to get the info into an array. =P Good luck! |