Functions Php

  phpinfo();
  phpcredits();
  
  echo phpversion() . ""; 
  
  echo ini_get ("post_max_size") . "";
  $myarray = ini_get_all();
  print_r($myarray);
  
  echo "";
  
  echo date ("F d Y H:i:s.", getlastmod()) . ""; 
  
  $curip = $_SERVER['REMOTE_ADDR'];
  $myarray = array ();
  if (!in_array ($curip, $myarray)){
    echo "We insert the IP addy: " . $curip . " into the database";
  } else {
    echo "The IP addy:" . $curip . " is already in the database.";
  }
?>