|
|
|
ต้องการให้ส่วนนี้ไม่แสดง display: none จะต้องทำอย่างไรค๊ะ |
|
|
|
|
|
|
|
Code (PHP)
$template->set('shipping_down', $item->shipping_down('type_service', $item_details['type_service']));
$direct_payments = $item->select_direct_payment($item_details['direct_payment'], $item_details['owner_id']);
$direct_payment_table = $template->generate_table($direct_payments, 4, 1, 1, '75%');
$template->set('direct_payment_table', $direct_payment_table);
$offline_payments = $item->select_offline_payment($item_details['payment_methods']);
$offline_payment_table = $template->generate_table($offline_payments, 4, 1, 1, '75%');
$template->set('offline_payment_table', $offline_payment_table);
$edit_auction_content .= $template->process('sell_item_shipping.tpl.php');
คือเป็นส่วนที่แสดงอยู่ในหน้าเว็บค๊ะ แล้วมีความสำคัญมาก ลบออกไม่ได้ค๊ะ แต่ก็ไม่ต้องการให้โชว์ออกไป จะมีวิธีการ display: none อย่างไรดีค๊ะ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2012-11-24 15:51:14 |
By :
dferru |
View :
816 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตามคุณ mangkunzo เลยครับ
echo "<div style=\"display:none;\">";
$template->set('shipping_down', $item->shipping_down('type_service', $item_details['type_service']));
$direct_payments = $item->select_direct_payment($item_details['direct_payment'], $item_details['owner_id']);
$direct_payment_table = $template->generate_table($direct_payments, 4, 1, 1, '75%');
$template->set('direct_payment_table', $direct_payment_table);
$offline_payments = $item->select_offline_payment($item_details['payment_methods']);
$offline_payment_table = $template->generate_table($offline_payments, 4, 1, 1, '75%');
$template->set('offline_payment_table', $offline_payment_table);
$edit_auction_content .= $template->process('sell_item_shipping.tpl.php');
echo "</div>";
|
|
|
|
|
Date :
2012-11-24 16:48:39 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|