This file contains hidden or 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="banner"> | |
| <div class="wrap-center"> | |
| <div class="banner-centered" id="banner-text"> | |
| <h2>Hello <strong>We Are Company-Name</strong>, Glad To See You. :-)</h2> | |
| </div> | |
| </div> | |
| </div> |
This file contains hidden or 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
| /* | |
| * RC4 symmetric cipher encryption/decryption | |
| * | |
| * @license Public Domain | |
| * @param string key - secret key for encryption/decryption | |
| * @param string str - string to be encrypted/decrypted | |
| * @return string | |
| */ | |
| function rc4(key, str) { | |
| var s = [], j = 0, x, res = ''; |
This file contains hidden or 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
| function utf8convert($str) { | |
| if(!$str) return false; | |
| $utf8 = array( | |
| 'a'=>'á|à|ả|ã|ạ|ă|ắ|ặ|ằ|ẳ|ẵ|â|ấ|ầ|ẩ|ẫ|ậ|Á|À|Ả|Ã|Ạ|Ă|Ắ|Ặ|Ằ|Ẳ|Ẵ|Â|Ấ|Ầ|Ẩ|Ẫ|Ậ', | |
| 'd'=>'đ|Đ', | |
| 'e'=>'é|è|ẻ|ẽ|ẹ|ê|ế|ề|ể|ễ|ệ|É|È|Ẻ|Ẽ|Ẹ|Ê|Ế|Ề|Ể|Ễ|Ệ', | |
| 'i'=>'í|ì|ỉ|ĩ|ị|Í|Ì|Ỉ|Ĩ|Ị', | |
| 'o'=>'ó|ò|ỏ|õ|ọ|ô|ố|ồ|ổ|ỗ|ộ|ơ|ớ|ờ|ở|ỡ|ợ|Ó|Ò|Ỏ|Õ|Ọ|Ô|Ố|Ồ|Ổ|Ỗ|Ộ|Ơ|Ớ|Ờ|Ở|Ỡ|Ợ', | |
| 'u'=>'ú|ù|ủ|ũ|ụ|ư|ứ|ừ|ử|ữ|ự|Ú|Ù|Ủ|Ũ|Ụ|Ư|Ứ|Ừ|Ử|Ữ|Ự', | |
| 'y'=>'ý|ỳ|ỷ|ỹ|ỵ|Ý|Ỳ|Ỷ|Ỹ|Ỵ', |
This file contains hidden or 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
| /** | |
| * Returns an string clean of UTF8 characters. It will convert them to a similar ASCII character | |
| * www.unexpectedit.com | |
| */ | |
| function cleanString($text) { | |
| // 1) convert á ô => a o | |
| $text = preg_replace("/[áàâãªä]/u","a",$text); | |
| $text = preg_replace("/[ÁÀÂÃÄ]/u","A",$text); | |
| $text = preg_replace("/[ÍÌÎÏ]/u","I",$text); | |
| $text = preg_replace("/[íìîï]/u","i",$text); |
This file contains hidden or 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
| Tutorial | |
| Cấu hình như sau | |
| http://fuelphp.com/docs/packages/parser/intro.html | |
| Usage | |
| Tất cả đều dùng parser() để lấy về object, cách sd tùy theo từng loại view, tham khao trên homepage cua nó. | |
| $lex = View_Lex::parser(); | |
| echo $lex->parse(View::forge('welcome/index.lex'),$data); | |
| $mustache = View_Mustache::parser(); |
This file contains hidden or 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 | |
| define("ENCRYPTION_KEY", "!@#$%^&*"); | |
| $string = "This is the original data string!"; | |
| echo $encrypted = encrypt($string, ENCRYPTION_KEY); | |
| echo "<br />"; | |
| echo $decrypted = decrypt($encrypted, ENCRYPTION_KEY); | |
| /** | |
| * Returns an encrypted & utf8-encoded |
This file contains hidden or 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
| function encrypt_decrypt($action, $string) { | |
| $output = false; | |
| $encrypt_method = "AES-256-CBC"; | |
| $secret_key = 'This is my secret key'; | |
| $secret_iv = 'This is my secret iv'; | |
| // hash | |
| $key = hash('sha256', $secret_key); | |
This file contains hidden or 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
| function encryptString($clearText) | |
| { | |
| $keyFile=fopen("public.pem","r"); | |
| $publicKey=fread($keyFile,8192); | |
| fclose($keyFile); | |
| openssl_get_publickey($publicKey); | |
| openssl_public_encrypt($clearText,$cryptText,$publicKey); | |
| return(base64_encode($cryptText)); | |
| } |
This file contains hidden or 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 | |
| /* | |
| * Converts CSV to JSON | |
| * Example uses Google Spreadsheet CSV feed | |
| * csvToArray function I think I found on php.net | |
| */ | |
| header('Content-type: application/json'); | |
| // Set your CSV feed |
This file contains hidden or 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
| // SmoothScroll v0.9.9 | |
| // Licensed under the terms of the MIT license. | |
| // People involved | |
| // - Balazs Galambosi: maintainer (CHANGELOG.txt) | |
| // - Patrick Brunner ([email protected]) | |
| // - Michael Herf: ssc_pulse Algorithm | |
| $ = jQuery.noConflict(); | |
| function ssc_init(){if(!document.body)return;var e=document.body;var t=document.documentElement;var n=window.innerHeight;var r=e.scrollHeight;ssc_root=document.compatMode.indexOf("CSS")>=0?t:e;ssc_activeElement=e;ssc_initdone=true;if(top!=self){ssc_frame=true}else if(r>n&&(e.offsetHeight<=n||t.offsetHeight<=n)){ssc_root.style.height="auto";if(ssc_root.offsetHeight<=n){var i=document.createElement("div");i.style.clear="both";e.appendChild(i)}}if(!ssc_fixedback){e.style.backgroundAttachment="scroll";t.style.backgroundAttachment="scroll"}if(ssc_keyboardsupport){ssc_addEvent("keydown",ssc_keydown)}}function ssc_scrollArray(e,t,n,r){r||(r=1e3);ssc_directionCheck(t,n);ssc_que.push({x:t,y:n,lastX:t<0?.99:-.99,lastY:n<0?.99:-.99,start:+(new Date)});if(ssc_pending){return |