Skip to content

Instantly share code, notes, and snippets.

View immortalsantee's full-sized avatar

Santosh Maharjan immortalsantee

  • Cyclone Nepal Info Tech Pvt. Ltd.
  • Lagankhel, Lalitpur, Kathmandu, Nepal
View GitHub Profile
@immortalsantee
immortalsantee / api.php
Created January 25, 2014 12:05 — forked from petenelson/api.php
Force all browsers to reload on any attached browser's page reload
<?php
// just using a file, could easily be replaced by some other storage method
if (isset($_REQUEST['new']) && $_REQUEST['new'] == '1') {
$ver = new stdClass();
$ver->ver = time();
file_put_contents('ver.json', json_encode($ver));
}
else {