↧
How to extract the exchange rates from NBR’s website datafeed
php, xml, arrays, exchange rate feed, n8mgdfukhp
View ArticleCode snippet: Getting PHP page generation time
This is a code snippet on how to get the execution time of a PHP script.This is the first from the code snippet series. <?php function GetMicroTime() { list($microseconds, $seconds) […]
View ArticleCode snippet: Restrict access to a page in PHP based on remote hosts IP’s
<?php //get the remote host IP $szRemoteIP = $_SERVER['REMOTE_ADDR']; //this is the array holding the allowed IP's list; $arrAllowedIPs = array("192.168.0.1", "192.168.2.3", "192.168.63.22",...
View Article