ถ้าหากต้องการสร้าง Input field โดยไม่ต้องมี label ทำได้โดย
echo $form->input( ‘Field1′, array( ‘label’ => false ) );
18 กุมภาพันธ์ 2008
ถ้าหากต้องการสร้าง Input field โดยไม่ต้องมี label ทำได้โดย
echo $form->input( ‘Field1′, array( ‘label’ => false ) );
18 กุมภาพันธ์ 2008
ปัญหาคือว่า สร้างฟอร์มรับข้อมูลเป็นภาษาไทย แล้วเปิดใน phpmyadmin มันเป็นอักษรยึกยือ คิดว่าน่าจะเป็นที่ mysql ตามที่เคยเจอมา ก็เลยแก้ไขไฟล์ my.cnf ตามนี้
…
[mysqld]
init-connect = ‘SET NAMES utf8′
…
หากไม่สามารถแก้ไขไฟล์ my.cnf ได้ อาจจะต้องสร้าง AppModel ขึ้นใหม่ ตามนี้
class AppModel extends Model
{
function __contruct()
{
parent::__construct();
if( !defined( ‘GLOBAL_UTF8′ ) )
{
$this->query( ‘SET NAMES “utf8″‘ );
define( ‘GLOBAL_UTF8′, TRUE );
}
}
}
เหตุการณ์ก็สงบลง
ที่มา: http://cakebaker.wordpress.com/2006/01/16/trouble-with-utf-8/
11 กุมภาพันธ์ 2008
When you slipstream Service Pack 3 into your Office 2003
installation point, Office 2003 will be installed at Service Pack 3
level saving you the trouble of applying it afterwards. All you need is
Office 2003 Service Pack 3 and the installation CD of Office 2003.
C:\Office2003SP3-KB923618-FullFile-ENU.exe /t:c:\o2k3sp3a /cD:\setup.exe /a (where D:\ is your CD-ROM drive)msiexec /a C:\o2k3\pro.msi /p C:\o2k3sp3a\MAINSP3.mspNote 1: You can append /qb+ to the preceding
command line to avoid receiving the Office 2003 Administrative
Installation dialog box and the End User License Agreement dialog box.
Note 2: You can follow these instructions as well to include the hotfixes
*Replace with your msi name. Just a quick list to get the idea;
pro.msi = Office 2003 Professional
proret.msi = Office 2003 Professional Retail
std.msi = Office 2003 Standard
stdret.msi = Office 2003 Standard Retail
sberet.msi = Office 2003 Small Business Retail
If it ends with tri it is a trial edition; protri.msi
ที่มา: http://www.howto-outlook.com/otherprograms/slipstreamo2k3sp.htm
Powered by ScribeFire.
5 กุมภาพันธ์ 2008