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
<div class="loader"> | |
<div class="row1"> | |
<div class="left"></div> | |
<div class="right"></div> | |
</div> | |
<div class="row2"> | |
<div class="left"></div> | |
<div class="right"></div> | |
</div> | |
<div class="row3"> |
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
<div id="container"> | |
<div class="box"> | |
<img src="http://chenyiya.com/codepen/product-1.jpg" alt="pic1"> | |
<i class="fa fa-plus"></i> | |
<h3 id="item-one">Beer Bottle</h3> | |
<p>12.99</p> | |
</div> | |
<div class="box"> | |
<img src="http://chenyiya.com/codepen/product-2.jpg" alt="pic2"> | |
<i class="fa fa-plus"></i> |
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
<div class="wrapper"> | |
<div class="sidebar"> | |
<div class="brand">JUUCE</div> | |
<div class="menu"> | |
<ul> | |
<li><i class="glyph-icon flaticon-user"></i> Profile</li> | |
<li><i class="glyph-icon flaticon-like"></i> Wish list</li> | |
<li><i class="glyph-icon flaticon-like-1"></i> Why buy juuce?</li> | |
<li><i class="glyph-icon flaticon-vision"></i> About us</li> | |
<li><i class="glyph-icon flaticon-mail"></i> Contact us</li> |
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 | |
$user_agent = $_SERVER['HTTP_USER_AGENT']; | |
echo $user_agent; | |
function getBrowser($user_agent){ | |
if(strpos($user_agent, 'Maxthon') !== FALSE) | |
return "Maxthon"; | |
elseif(strpos($user_agent, 'SeaMonkey') !== FALSE) | |
return "SeaMonkey"; | |
elseif(strpos($user_agent, 'Vivaldi') !== FALSE) | |
return "Vivaldi"; |
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
<IfModule mod_headers.c> | |
Header set Connection keep-alive | |
# Cache-control headers | |
# 2 HOURS | |
#<filesMatch "*"> | |
Header set Cache-Control "max-age=7200, must-revalidate" | |
#</filesMatch> | |
# 480 weeks - 290304000 |
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 | |
$username="root"; $password=""; $database="exam_codes"; | |
$con = mysql_connect("localhost",$username,$password) or die( "Unable to Connect database"); | |
mysql_select_db($database,$con) or die( "Unable to select database"); | |
// Table Name that you want | |
// to export in csv | |
$ShowTable = "blogs"; | |
$FileName = "_export.csv"; | |
$file = fopen($FileName,"w"); |
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
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<link rel="stylesheet" type="text/css" href="excel-2000.css"/> | |
<link rel="stylesheet" type="text/css" href="excel-xp.css"/> | |
<link rel="stylesheet" type="text/css" href="excel-2003.css"/> | |
<link rel="stylesheet" type="text/css" href="excel-2007.css"/> | |
<script lang="javascript"> |
OlderNewer