This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 3.4.10.1deb1 | |
-- http://www.phpmyadmin.net | |
-- | |
-- Host: localhost | |
-- Generation Time: May 16, 2013 at 12:29 PM | |
-- Server version: 5.5.29 | |
-- PHP Version: 5.4.12-2~precise+1 | |
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$browsers = array( | |
'firefox', 'msie', 'opera', 'chrome', 'safari', 'mozilla', 'seamonkey', 'konqueror', 'netscape', | |
'gecko', 'navigator', 'mosaic', 'lynx', 'amaya', 'omniweb', 'avant', 'camino', 'flock', 'aol' | |
); | |
if (isset($_SERVER['HTTP_USER_AGENT'])) { | |
$browser['useragent'] = $_SERVER['HTTP_USER_AGENT']; | |
$user_agent = strtolower($browser['useragent']); | |
foreach($browsers as $_browser) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Create Site map | |
* | |
* @category Model | |
* @author Md. Sirajus Salayhin <[email protected]> | |
* | |
*/ |
NewerOlder