Check to see the maximum post value size : ini_get « Utility Function « PHP






Check to see the maximum post value size

 
<?php 
    echo ini_get ("post_max_size") . "<br />"; 
    $myarray = ini_get_all(); 
    print_r($myarray); 
?>
  
  








Related examples in the same category

1.string ini_get ( string varname ) reads a value from the php.ini file without altering it