gpt4 book ai didi

php - div 中的按钮

转载 作者:行者123 更新时间:2023-11-28 11:59:53 25 4
gpt4 key购买 nike

我已经了解一点 PHP,但我无法让它工作。我希望通过使用 opencart CMS 我可以学习一些更基本的 PHP,但现在我真的被困住了。

这段代码应该使一些上传按钮出现在页面上。事情是,虽然。我希望它们出现在 DIV 中,这样我就可以使用 CSS 使按钮彼此相邻 float 。

代码如下:

<?php if ($option['type'] == 'file') { ?>
<div id="option-<?php echo $option['product_option_id']; ?>" class="upload" >
<?php if ($option['required']) { ?>
<span class="required">*</span>

<?php } ?>
<b><?php echo $option['name']; ?>:</b><br />
<input type="button" value="<?php echo $button_upload; ?>" id="button option-<?php echo $option['product_option_id']; ?>" class="button">
<input type="hidden" name="option[<?php echo $option['product_option_id']; ?>]" value="" />
</div>

谁能告诉我如何完成此操作或为我指明正确的方向?

最佳答案

<?php if ($option['type'] == 'file') { // You didn't close your bracket. 
// Insert code here
}
?>
<div id="option-<?php echo $option['product_option_id']; ?>" class="upload" >
<?php if ($option['required']) {// Again here. ?>
<span class="required">*</span>

<?php } ?>
<b><?php echo $option['name']; ?>:</b><br />
<input type="button" value="<?php echo $button_upload; ?>" id="button option-<?php echo $option['product_option_id']; ?>" class="button">
<input type="hidden" name="option[<?php echo $option['product_option_id']; ?>]" value="" />
</div>

关于php - div 中的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19943728/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com