Foundation - The most advanced responsive front-end framework 取得連結 Facebook X Pinterest 以電子郵件傳送 其他應用程式 5月 22, 2014 Foundation The most advanced responsive front-end framework in the world. Download Foundation 5 source from: http://foundation.zurb.com/ 取得連結 Facebook X Pinterest 以電子郵件傳送 其他應用程式 留言
How to PHP export to Excel 2月 26, 2013 How to PHP export to Excel export.php <?php require 'php-excel.class.php'; $xls = new Excel('Sheet1'); $xls->worksheets['Sheet']->addRow(array("col1"," col2 "," col3 ")); $xls->addsheet(' Sheet2 '); $xls->worksheets[' Sheet2 ']->addRow(array(" col1a "," col2a "," col3a ")); $xls->generate('export'); ?> php-excel.class.php <?php class WorkSheet { private $lines = array(); public $sWorksheetTitle; public function __construct($sWorksheetTitle) { $this->setWorksheetTitle($sWorksheetTitle); } public function setWorksheetTitle ($title) { $title = preg_replace ("/[\\\¦:¦\/¦\?¦\*¦\[¦\]]/", "", $title); $title = substr ($title, 0, 31); $this->sWorksheetTitle = $title; } public function addRow ($array) { $cells = ""; foreach ... 閱讀完整內容
HTML5 Placeholder jQuery Plugin for all browsers (Including IE) 4月 17, 2014 HTML5 Placeholder jQuery Plugin $(function() { $('input, textarea').placeholder(); }); source from: http://www.jqueryscript.net/demo/HTML5-Placeholder-For-All-Browsers-With-jQuery-placeholder/ 閱讀完整內容
留言
張貼留言