View getTotalSearchNum
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
public function getTotalSearchNum($keyword, $search_by){ | |
$sql='SELECT cust_sn '; | |
$sql.='FROM (avcd_customer AS c) '; | |
switch ($search_by): | |
case 'name': | |
$sql.='WHERE c.cust_first_name LIKE "%'.$keyword.'%" OR c.cust_last_name LIKE"%'.$keyword.'%" '; | |
View getTotalNum
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
public function getTotalNum(){ | |
$this->db->select('mrcnt_sn'); | |
$this->db->from('tblmerchant'); | |
$res=$this->db->get(); | |
return $res->num_rows; | |
}//end function |
View .htaccess
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_rewrite.c> | |
RewriteEngine on | |
Options -Indexes | |
RewriteBase / | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule ^(.*)$ index.php/$1 [L] | |
</IfModule> |
View .htaccess
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_rewrite.c> | |
RewriteEngine on | |
Options -Indexes | |
RewriteBase /foldername/ | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule ^(.*)$ /foldername/index.php/$1 [L] | |
AddOutputFilter DEFLATE css js | |
ExpiresActive On |
View unixtimestamptojavascriptdate
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
var ep = '1424901599'; | |
var date = new Date(ep*1000); | |
var iso = date.toLocaleString(); | |
alert(iso) |
View javascript-response-object
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
'use strict'; | |
module.exports = function () { | |
return { | |
created: function (obj, message) { | |
return { | |
status: true, | |
httpStatus: 201, | |
message: message, |
View .vimrc
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
syntax enable | |
colorscheme desert | |
"-------------General Settings--------------" | |
set backspace=indent,eol,start "Make backspace behave like every other editor. | |
let mapleader = ',' "The default leader is \, but a comma is much better. | |
set number "Let's activate line numbers. |
View Block Baidu Spider via robots.txt
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
# Block Baidu spider | |
User-agent: Baiduspider | |
User-agent: baiduspider | |
User-agent: Baiduspider-video | |
User-agent: Baiduspider-image | |
User-agent: Baiduspider+ | |
Disallow: / | |
# BLOCK Yandex | |
User-agent: Yandex |
View Block Google Analytics Spam via .htaccess
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
# BEGIN WordPress | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.php [L] | |
# block google analytics spam |
View ecuador.json
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
[ | |
{ | |
"Province SN": 1, | |
"Province": "Azuay", | |
"cantons": [ | |
{ | |
"Canton": "Camilo Ponce Enríquez", | |
"Capital": "Camilo Ponce Enríquez" | |
}, | |
{ |
OlderNewer