因此,我的表单效果很好,但我一直在尝试为其添加定价。基本上html看起来像这样:
HTML:
<div id="rightDriver">
<!-- Start Form -->
<!-- This is the club photos -->
<div class="clubPhotos">
<div class="club">
<img src="clubs/img/praxispi.png" class="clubPhoto" />
<span class="clubTitle">Praxis PI</span>
<span class="clubSub">Low Launch 9.5</span>
<input type="checkbox" id="clubCheckbox4" class="clubCheckbox" name="DriverType" value="Praxis PI Low Launch 9.5" />
</div>
<div class="club">
<img src="clubs/img/praxispi.png" class="clubPhoto" />
<span class="clubTitle">Praxis PI</span>
<span class="clubSub">Mid-Low Launch 12.5</span>
<input type="checkbox" id="clubCheckbox1" class="clubCheckbox" name="DriverType" value="Praxis PI Mid-Low Launch 12.5" />
</div>
<div class="club">
<img src="clubs/img/praxispi.png" class="clubPhoto" />
<span class="clubTitle">Praxis PI</span>
<span class="clubSub">Mid-High Launch 15.5</span>
<input type="checkbox" id="clubCheckbox2" class="clubCheckbox" name="DriverType" value="Praxis PI Mid-High Launch 15.5" />
</div>
<div class="club last">
<img src="clubs/img/praxispi.png" class="clubPhoto" />
<span class="clubTitle">Praxis PI</span>
<span class="clubSub">High Launch 18.5</span>
<input type="checkbox" id="clubSelect" class="clubCheckbox" name="DriverType" value="Praxis PI High Launch 18.5" />
</div>
<div class="clear"></div>
</div>
<!-- This is the driver order info -->
<div class="clubForm">
<span class="heading">Club Specs</span>
<select name="DriverLength" class="select">
<option value="" selected="selected">Driver Length</option>
<option value="47.5">47.5</option>
<option value="47">47</option>
<option value="46.5">46.5</option>
<option value="46">46</option>
<option value="45.5">45.5</option>
<option value="45">45</option>
<option value="44.5">44.5</option>
<option value="44">44</option>
<option value="43.5">43.5</option>
<option value="43">43</option>
<option value="42.5">42.5</option>
<option value="42">42</option>
</select>
<select name="DriverShaft" class="select">
<option value="" selected="selected">Select Shaft</option>
<option value="LE- light weight graphite weakest flex">LE- light weight graphite weakest flex</option>
<option value="LW- Light weight graphite weak flex">LW- Light weight graphite weak flex</option>
<option value="LM- Light weight graphite medium flex">LM- Light weight graphite medium flex</option>
<option value="LR- Light weight graphite regular flex">LR- Light weight graphite regular flex</option>
<option value="GR- Medium weight graphite regular flex">GR- Medium weight graphite regular flex</option>
<option value="SS- Light weight graphite stiff flex">SS- Light weight graphite stiff flex (low torque)</option>
<option value="TS- Medium weight graphite stiff flex">TS- Medium weight graphite stiff flex</option>
<option value="SX- Light weight graphite X-stiff">SX- Light weight graphite X-stiff</option>
<option value="KS- Light weight steel stiff flex">KS- Light weight steel stiff flex</option>
<option value="KR- Light weight steel regular flex">KR- Light weight steel regular flex</option>
<option value="DX- Heavy weight steel extra stiff">DX- Heavy weight steel extra stiff</option>
<option value="DS- Heavy weight steel stiff flex">DS- Heavy weight steel stiff flex</option>
</select>
<select name="DriverPured" class="select">
<option value="" selected="selected">PURE'd</option>
<option value="high">High</option>
<option value="low">Low</option>
</select>
</div>
</div>
评论看起来像这样:
echo "<h3> Driver</h3>";
echo "<hr>";
echo (!empty($_REQUEST['DriverType'])) ? "<div class='reviewItem'><span class='reviewTitle'>Driver:</span>{$_REQUEST['DriverType']}</div>" : "";
echo (!empty($_REQUEST['DriverShaft'])) ? "<div class='reviewItem'><span class='reviewTitle'>Shaft:</span>{$_REQUEST['DriverShaft']}</div>" : "";
echo (!empty($_REQUEST['DriverLength'])) ? "<div class='reviewItem'><span class='reviewTitle'>Length:</span>{$_REQUEST['DriverLength']}</div>" : "";
echo (!empty($_REQUEST['DriverPured'])) ? "<div class='reviewItem'><span class='reviewTitle'>Pured:</span>{$_REQUEST['DriverPured']}</div>" : "";
我想要发生的是将价格添加到“轴”并将其乘以标记的复选框数量。我不知道从哪里开始。我知道我可以将价格添加到轴“价值”,但是如果我用“价值”的数字替换它,我将如何处理轴的名称我想在 PHP 中创建一个数组,但任何帮助都会很棒。提前谢谢。