<?php
// NOTE: When accessing a element from the above phpinfo_array(), you can do:
$array = phpinfo_array();
// This will work
echo $array["General"]["System "];
// This should work also, but it doesn't because there is a space after System in the array.
echo $array["General"]["System"];
// I hope the coder will fix it, so as to save someone else from wasting time. Otherwise, nice script.
?>