http://faceblog.in.th/2011/05/wordpresshowto-facebook-open-graph-tag/
http://faceblog.in.th/2010/11/connect-to-facebook-with-open-graph-protocol-and-social-plugin/
เว็บ เขียนเว็บ เครื่องมือทำเว็บ รวมเทคนิค การทำเว็บไซต์ เขียน php html5 css3 javascript jquery ajax xml ฐานข้อมูล database mysql sql คอมพิวเตอร์ windows linux server ความรู้ทั่วไป web application cloud ทำตามได้ step by step ได้ผล 100%
4 กรกฎาคม 2556
28 มิถุนายน 2556
Display focus keyword and description with yoast wordpress plugin
1 .Create Function on your themes on function.php
2. input meta tag on your header file.
3. Done already.
2. input meta tag on your header file.
3. Done already.
10 มิถุนายน 2556
custom accordion jquery
Margin and Padding
Try applying
This will cause a gap between the open header and it's content, but you can fix that by removing the margin on
So your css would look like this:
That might need a bit of tweaking, but should get you mostly there.
อ้างอิง http://stackoverflow.com/questions/3229723/jquery-ui-accordion-issue
สำหรับทดสอบ script online
http://jsbin.com/adele3/687/edit
Extending Jquery accordion to rows of a table
http://stackoverflow.com/questions/16046654/extending-jquery-accordion-to-rows-of-a-table
margin-bottom:5px;
to .ui-accordion-header
.This will cause a gap between the open header and it's content, but you can fix that by removing the margin on
.ui-accordion-header.ui-state-active
and applying it to .ui-accordion-content-active
instead.So your css would look like this:
.ui-accordion-header {
margin-bottom:5px;
}
.ui-accordion-header.ui-state-active {
margin-bottom:0;
}
.ui-accordion-content-active {
margin-bottom:5px;
}
That might need a bit of tweaking, but should get you mostly there.
อ้างอิง http://stackoverflow.com/questions/3229723/jquery-ui-accordion-issue
สำหรับทดสอบ script online
http://jsbin.com/adele3/687/edit
Extending Jquery accordion to rows of a table
http://stackoverflow.com/questions/16046654/extending-jquery-accordion-to-rows-of-a-table
9 พฤษภาคม 2556
10+ Mod_Rewrite Rules You Should Know
http://www.noupe.com/php/10-mod_rewrite-rules-you-should-know.html
8 พฤษภาคม 2556
Simple export php to excel
- $result=mysql_query("select * from tbl_name");
function xlsBOF()
{
echo pack("ssssss", 0x809, 0x8, 0x0, 0x10, 0x0, 0x0);
return;
}
function xlsEOF()
{
echo pack("ss", 0x0A, 0x00);
return;
}
function xlsWriteNumber($Row, $Col, $Value)
{
echo pack("sssss", 0x203, 14, $Row, $Col, 0x0);
echo pack("d", $Value);
return;
}
function xlsWriteLabel($Row, $Col, $Value )
{
$L = strlen($Value);
echo pack("ssssss", 0x204, 8 + $L, $Row, $Col, 0x0, $L);
echo $Value;
return;
}
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");;
header("Content-Disposition: attachment;filename=list.xls");
header("Content-Transfer-Encoding: binary ");
xlsBOF();
xlsWriteLabel(0,0,"Heading1");
xlsWriteLabel(0,1,"Heading2");
xlsWriteLabel(0,2,"Heading3");
$xlsRow = 1;
while($row=mysql_fetch_array($result))
{
xlsWriteNumber($xlsRow,0,$row['field1']);
xlsWriteLabel($xlsRow,1,$row['field2']);
xlsWriteLabel($xlsRow,2,$row['field3']);
$xlsRow++;
}
xlsEOF();
2 พฤษภาคม 2556
คำสั่งเปลี่ยน ชนิดของ ฟิลด์ (DATA TYPE) ของ Mysql
ALTER TABLE `mytable`
CHANGE `mydatefield` `mydatefield`
TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
สมัครสมาชิก:
บทความ (Atom)