コード例 #1
0
}
?>

					 <!-- | <a title="By 10 Users" >Reported as sold (10)</a>-->
					 <span>
						<em>
					<?php 
if ($update) {
    ?>
						<input type="text" style="width:60px;" required name="price" value="<?php 
    echo $product_info["price"];
    ?>
">
						<select  class="btn btn-slim" name="currencyID">
						<?php 
    $currencies = FormElement::getCurrencies();
    if ($currencies) {
        foreach ($currencies as $currency) {
            ?>
									<option <?php 
            echo $currency['currency'] == $product_info["currency"] ? "selected" : "";
            ?>
 value="<?php 
            echo $currency['id'];
            ?>
"><?php 
            echo $currency['currency'];
            ?>
</option>
								<?php 
        }