|
|
|
เรื่อง code highlight อ่ะคับ เรียน webmaster ของเวบคับ (to พี่วิน) (ทางการจัง แหะๆ) |
|
|
|
|
|
|
|
น่าสนใจมากครับ เดียวเย็นนี้กลับมาทำให้ครับ
|
|
|
|
|
Date :
2009-05-09 07:55:51 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อุ..บร๊ะ ขอบคุณอย่างแรง +1
|
|
|
|
|
Date :
2009-05-09 21:32:02 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณอีกหนึ่งเสียง
|
|
|
|
|
Date :
2009-05-09 22:27:17 |
By :
nopasurada |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
echo "จัดให้แล้วครับ";
echo "ขอบคุณสำหรับคำแนะนำในการพัฒนาปรับปรุงแก้ไข";
?>
|
|
|
|
|
Date :
2009-05-10 12:08:28 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทดสอบ ๆ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP Word.Application Tutorial</title>
</head>
<body>
<?
$wdColorDarkRed = "&H80";
$wdAlignParagraphCenter = "1";
$wdAlignParagraphLeft = "0";
$wdParagraph = "4";
$wdHorizontalPositionMargin = "0";
$wdTableLeft = "-999998";
$wdCollapseEnd = "0";
$Wrd = new COM("Word.Application");
$DocName = "MyDoc/MyWord.doc";
//$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/myphp
$Wrd->Application->Visible = False;
$WrdDoc = $Wrd->Documents->Add();
$MyRange1 = $WrdDoc->Paragraphs->Add->Range;
$MyRange1->ParagraphFormat->Alignment = $wdAlignParagraphCenter;
$MyRange1->Font->Name = "Verdana";
$MyRange1->Font->Size = "30";
$MyRange1->Font->Bold = True;
$MyRange1->InsertBefore(chr(13).chr(13)."www.ThaiCreate.Com".chr(13)."Version 2009");
$MyRange1->InlineShapes->AddPicture(realpath("thaicreate-2009.gif"));
//$WrdDoc->InlineShapes->AddPicture(realpath("thaicreate-2009.gif"));
//$WrdDoc->Shapes->AddPicture(realpath("thaicreate-2009.gif"),0,0,MyRange1);
//$WrdDoc->Shapes->AddPicture(realpath("thaicreate-2009.gif"),0,0,Wrd->Selection->Range);
$MyRange2 = $WrdDoc->Paragraphs->Add->Range;
$MyRange2->ParagraphFormat->Alignment = $wdAlignParagraphCenter;
$MyRange2->Font->Name = "Verdana";
$MyRange2->Font->Size = "15";
$MyRange2->Font->Bold = True;
$MyRange2->InsertBefore(chr(13).chr(13)."PHP,ASP and ASP.NET Tutorial");
$MyRange2->InlineShapes->AddPicture(realpath("doc.gif"));
$MyRange3 = $WrdDoc->Paragraphs->Add->Range;
$MyRange3->ParagraphFormat->Alignment = $wdAlignParagraphCenter;
$MyRange3->Font->Name = "Verdana";
$MyRange3->Font->Size = "10";
$MyRange3->Font->Bold = True;
$MyRange3->Font->Color = $wdColorDarkRed;
$MyRange3->Underline = True;
$MyRange3->InsertBefore(chr(13).chr(13).chr(13).chr(13)."All Rights Reserved");
//$WrdDoc->SaveAs($strPath."/".$DocName);
$WrdDoc->SaveAs(realpath($DocName));
$Wrd->Application->Quit;
$Wrd = null;
?>
Word Created <a href="<?=$DocName?>">Click here</a> to Download.
</body>
</html>
|
|
|
|
|
Date :
2009-05-10 12:13:48 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไงอ่ะ ผม งง
|
|
|
|
|
Date :
2009-05-10 12:38:44 |
By :
stepby |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอทดสอบด้วยครับ ^^
Code (PHP)
<?php
require_once("vars.php");
class page extends MainTheme {
private function genPager(){
$oPagerManager = new pagerRfManager("test");
if( isset($_REQUEST[pagerRfManager::PAGER_RESET_PARAM_NAME]) or !$oPagerManager->load() ){
$oPagerManager->registerPager("samplePager", new pagerRfDataTestSystemparam());
}
list($result, $value) = $oPagerManager->handle();
if($result == CReturn::FAIL) $this->resultError($value);
list($content) = $value;
$this->smarty->assign(array(
"pager_name"=>pagerRfManager::PAGER_PARAM_NAME,
"pager_content_table"=>$content,
));
}
public function display(){
$this->genPager();
$this->smarty->assign(array(
"test_msg"=>_("test"),
));
$this->smarty->display("test.tpl");
parent::display();
}
}
$page = new page();
$page->display();
?>
|
|
|
|
|
Date :
2009-05-11 09:59:00 |
By :
nut_t02 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งั้นถ้ายังไงพี่วินขอโค้ดไว้ศึกษาหน่อยได้ไหมครับ น่าสนใจไม่น้อยเลยทีเดียว
|
|
|
|
|
Date :
2009-05-12 20:28:32 |
By :
melodyApinan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2009-05-13 05:59:07 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมเริ่มศึกษาเรื่องโค้ดไฮไลน์ครับ ทำได้แล้วเกือบทุกอย่างที่ต้องการครับ ยกเว้น สลับสีแถวครับ รบกวนช่วยบอกแนวทางหน่อยครับ ขอบคุณครับ
|
|
|
|
|
Date :
2011-11-02 08:46:50 |
By :
เด็กน้อยครับ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|