Two ways can Shut down windows 8 1.Mouse over on Right most end of bottom task bar 2.An auto widow will come click on Settings. 3.Another window will open click on Power option 4.Choose your option to shut down windows 8.
Author: smarttips
Walk in drive for PHP professionals in UST Global cochin/Trivandrum
Position: Senior Software Developer /Systems Analyst JO NO: 912, 926, 930, 931 Work Location: Trivandrum Experience: 3-6 years WALK IN DATE: – Saturday 25th May 2013 WALK IN TIME: – Between 9.30 AM – 4:00 PM Interview places: Trivandrum: UST Global Bhavani West 1 , Technopark Kochi: UST Global Ground floor, Leela Building INFOPARK, Kakkanadu…
How to delete Browser History using keyboard
The shortcut key for remove and clear the browser history 1.Press: Ctrl +Shift+Delete 2.A popup will come then Select the required choices and confirm the delete action. It will clear the browsing history. or Tools->Clear Recent History A popup will come then Select the…
function to remove trailing slashes from URL
php function to remove trailing slashes from URL <?php private function _curSiteURL() { $pageURL = ‘http’; if ($_SERVER[“HTTPS”] == “on”) {$pageURL .= “s”;} $pageURL .= “://”; $pageURL .= $_SERVER[“SERVER_NAME”].dirname($_SERVER[‘SCRIPT_NAME’]).’/’; if (substr($pageURL, -1) == ‘/’ ): return substr($pageURL, 0, -1); else: return $pageURL; endif; } ?>
php str_replace() function
php str_replae() function echo $socUrl = str_replace(‘-‘, ‘smarttips.in’, ‘My favorite website is -‘); output-My favorite website is smarttips.in