Please make sure that JavaScript is enabled in your browser. If you are using a browser extension to selectively enable or disable JavaScript, make sure it's enabled for this server.
Review Request #134 — Created Jan. 1, 2023 and updated Jan. 20, 2023, 2:02 a.m.
Reviewing this
Comment Blah Blah
What's this?
<button type="button" class="close text-white" data-dismiss="modal">
Just test comment
comment
Ship It!
<option value="">- Currency -</option>
<?php foreach($currencies_array as $currency_code => $currency_name) { ?>
<option <?php if($session_company_currency == $currency_code){ echo "selected"; } ?> value="<?php echo $currency_code; ?>"><?php echo "$currency_code - $currency_name"; ?></option>
<?php } ?>
</select>
</div>
Comment