เทคนิคทั้ง 4 ประเภทนี้ เป็นส่วนหนึ่งของเครื่องมือ การทำเว็บไซต์ให้มีรายได้ ต้องอาศัยการนำเทคนิค ต่างๆ มาใช้งานร่วมกัน
เครื่องมือวิเคราะห์ผลทั่วไป เช่น TwitAnalyzer, SocialBakers, Twentyfeet
เว็บ เขียนเว็บ เครื่องมือทำเว็บ รวมเทคนิค การทำเว็บไซต์ เขียน php html5 css3 javascript jquery ajax xml ฐานข้อมูล database mysql sql คอมพิวเตอร์ windows linux server ความรู้ทั่วไป web application cloud ทำตามได้ step by step ได้ผล 100%
function the_breadcrumb() { echo 'You are here: '; if (!is_front_page()) { echo 'Home'; echo " » "; if (is_category() || is_single()) { the_category(' '); if (is_single()) { echo " » "; the_title(); } } elseif (is_page()) { echo the_title(); } } else { echo 'Home'; } }อธิบายโค้ด
function the_breadcrumb() {บรรดทัดที่ 1 :
echo 'You are here: ';บรรดทัดที่ 2 :
You are here: ขึ้นเริ่มต้น แต่ถ้าไม่ชอบคำนี้ก็เปลี่ยนได้ครับ อาจจะเป็นคำว่า "คุณอยู่ที่" เป็นต้น
if (!is_front_page()) { echo 'Home'; echo " » ";บรรทัดที่ 3 – 7:
if (is_category() || is_single()) { the_category(' '); if (is_single()) { echo " » "; the_title(); }บรรดทัด 8 -13:
} elseif (is_page()) { echo the_title(); } }บรรดทัด 14 – 17:
else { echo 'Home'; } }บรรดทัด 18 – 21:
include (header.php); //This file is in the same directory as the PHP file
include (includes/header.php); //This file is in a directory under the PHP file
include (../header.php); //This file is in the directory above the current PHP file
?>
Relative file paths can be used in every legitimate situation an absolute path would be used, although it may take a little more work. As in the example above, you may have to work at determining where the file you wish to include exists in relation to the PHP file being run.
= file_get_contents("http://www.YourDomain.com/includes/header.php");
echo $includeFile;
?>
This is a good alternative to keep the absolute path an option in including a certain file. There are some instances where the above code wouldn’t come out as planned, depending on the situation. In addition, it adds another line of code that we can relinquish with the best solution: using a server variable.
include $_SERVER['DOCUMENT_ROOT'] . '/includes/header.php';
?>
This allows you to keep the absolute path that you’ve come to be familiar with in using the include statement. Technically, the $_SERVER['DOCUMENT_ROOT'] command gives your path to the public_html directory, as seen below: