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
| if (navigator.userAgent.match(/IEMobile\/10\.0/)) { | |
| var msViewportStyle = document.createElement("style"); | |
| msViewportStyle.appendChild(document.createTextNode("@-ms-viewport{width:auto!important}")); | |
| document.getElementsByTagName("head")[0].appendChild(msViewportStyle); | |
| } |
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
| SELECT * | |
| FROM test | |
| INTO OUTFILE '/tmp/test.csv' | |
| FIELDS TERMINATED BY ',' | |
| ENCLOSED BY '"' | |
| LINES TERMINATED BY '\n'; |
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 getFlashMovie(movieName) { | |
| var isIE = navigator.appName.indexOf('Microsoft') !== -1; | |
| return (isIE) ? window[movieName] : document[movieName]; | |
| } | |
| // with a swfobject embedding like: | |
| var flashvars = {}; | |
| var params = {}; | |
| var attributes = {}; | |
| attributes.id = "myFlash"; // required for flash to javascript communication |
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
| array_map(create_function('', ''), $array); |
NewerOlder