<?php /** * Easy template **/ for ( $i = 0; $i < 10; $i++ ) { $template = file_get_contents('loop_for.html'); $template = str_replace('{$number}',$i, $template); $list .= $template; } $filetemplate = file_get_contents('index.html'); $filetemplate = str_repeat('{$loop_for}', $list, $filetemplate ); echo $filetemplate; /** * Smarty template **/ $template = new Smarty(); for ( $i = 0; $i < 10; $i++ ) { // ตรงนี้ ทำงัยอะคับ ให้โหลด template เก็บไว้ในตัวแปร โดยใช้ smarty $template = file_get_contents('loop_for.html'); $template = str_replace('{number}',$i, $template); $list .= $template; } $template->assign('loop_for', $list); $template->display('index.tpl'); ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง