|
|
|
จะเขียน function html มาใช้งานดูตัวอย่างแล้วไม่เข้าใจ |
|
|
|
|
|
|
|
ตัวอย่างโค้ด function
Code (PHP)
function td($content,$attr){
if(!is_array($attr)){
$attr = array();
}
$keys = array_keys($attr);
$htmlattr = "";
$n = count($keys);
for($i=0;$i<$n;$i++){
if($i != 0){
$htmlattr .= " ";
}
$htmlattr .= $keys[$i]."=\"".$attr[$keys[$i]]."\n";
}
$ret = "<td $htmlattr>$content</td>";
return $ret;
}
ตัวอย่างกานนำมาใช้
Code (PHP)
$content = form(
table(
textinput_tr("First Name :", "fname").
textinput_tr("Last Name :", "lname").
textinput_tr("User name :", "name").
textinput_tr("Confirm user name :", "cname").
passinput_tr("Password :", "password").
passinput_tr("Confirm Password :", "cpassword").
textinput_tr("Email :", "email").
textinput_tr("Confirm email :", "cemail")i.
tr(
td(
input(
"login"
,
array("type" => "submit", "value" => "Information Register")
)
)
)
,
array("width" => "301", "border" => "0", "cellspacing" => "1", "cellpadding" => "1")
)
,
array("method" => "post", "action" => "do_create_user.php")
);
$title = "new_user.php";
echo html($title, $content);
พอดีรันดูไม่ได้เพราะโค้ดฟังชั่นก์มีตัวเดียวพอลองเขียนตัวอื่นเรียนแบบตัวเดิมมันก้อ error ใครพอจะเขียนฟังชั่นให้ดูอีกสักตัวหน่อยครับเพื่อเทียบกันจะได้เข้าใจ
Tag : PHP
|
|
|
|
|
|
Date :
2011-08-03 17:06:14 |
By :
ITKIKOK |
View :
890 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันจะได้ผลลัพธ์แบบไหนครับ ถึงจะถูกต้อง
|
|
|
|
|
Date :
2011-08-03 20:42:05 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function html อยู่ตรงไหนครับ เห็นมีแต่ td
|
|
|
|
|
Date :
2011-08-04 00:46:40 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|