Quantcast
Browsing latest articles
Browse All 3 View Live

How to extract the exchange rates from NBR’s website datafeed

php, xml, arrays, exchange rate feed, n8mgdfukhp

View Article


Code 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 Article


Code 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
Browsing latest articles
Browse All 3 View Live