**I am sorry I have brought shame to the tribe.
I am using Open Cart for a web store, all the *.tpl files seem to be wrapped. I believe this is because the process is this:
For every *.tpl there are 2 php files. The 1st php file contains the strings,
<?php
// Heading
$_['heading_title'] = 'Shopping Cart';
// Text
$_['text_success'] = 'Success: You have added <a href="%s">%s</a> to your <a href="%s">shopping cart</a>!';
$_['text_remove'] = 'Success: You have modified your shopping cart!';
?>
the second php file calls the strings:
<?php
class ControllerCheckoutCart extends Controller {
private $error = array();
public function index() {
$this->language->load('checkout/cart');
if (!isset($this->session->data['vouchers'])) {
$this->session->data['vouchers'] = array();
} etc.....
and finally the tpl or template file is parsed with all the relevant information.
<?php echo $header; ?>
<?php if ($attention) { ?>
<div class="attention"><?php echo $attention; ?><img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>
<?php } ?>
Open Cart is not my program and I am sorry I did not mention the Open Cart software to begin with, save the mention the description tag.**
This part looks for a Postal Code in the database, if it exists then the customer does not get free shipping.
<?php $con = mysql_connect("localhost","root"); ?>
<?php if (!$con) {?>
<?php die("Can not connect to db: " . mysql_error()); ?>
<?php } ?>
<?php mysql_select_db("nov",$con); ?>
<?php $sql = "SELECT * FROM postcode"; ?>
<?php $myData = mysql_query($sql,$con); ?>
<?php while($record = mysql_fetch_array($myData)){ ?>
<?php echo $record['title']; ?>
<?php echo "<br />"; ?>
<?php $title = ($record['title']); ?>
<?php if ($title == $postcode) { ?>
<?php echo "Your postal code is considered a remote or isolated community and does not qualify for free shipping. Please see the shipping page for more details. "; ?>
<?php $freeshipping = "NO"; ?>
<?php } ?>
<?php } ?>
<?php if ($title <> $postcode) { ?>
<?php echo "You Get FREE Shipping over $99.00. "; ?>
<?php $freeshipping = "YES"; ?>
<?php } ?>
If they do not qualify for the free shipping I only want the shipping method named "Free+ Shipping" to be shown but disabled. My problem is that all shipping methods generated by the array are disabled.
I am just learning PHP so I don't know where I am going wrong. Thank you in advance.
<?php if ($error_warning) { ?>
<div class="warning"><?php echo $error_warning; ?></div>
<?php } ?>
<?php if ($shipping_methods) { ?>
<p><?php echo $text_shipping_method; ?></p>
<table class="radio">
<?php foreach ($shipping_methods as $shipping_method) { ?>
<tr><td colspan="3"><b>
<?php echo $shipping_method['title']; ?></b></td></tr>
<?php $Ship_Title = ($shipping_method['title']); ?>
<?php if (!$shipping_method['error']) { ?>
<?php foreach ($shipping_method['quote'] as $quote) { ?>
<tr class="highlight">
<td>
<?php if ($quote['code'] == $code || !$code) { ?>
<?php $code = $quote['code']; ?>
<?php if ($Ship_Title == "Free+ Shipping" && $freeshipping == "NO") { ?>
<?php $sResult = 'disabled="disabled"' ?>
<?php } else { ?>
<?php $sResult = 'checked="checked"' ?>
<?php } ?>
<?php } ?>
<input type="radio" name="shipping_method" value="<?php echo $quote['code']; ?>" id="<?php echo $quote['code']; ?>" <?php echo $sResult ?> />
</td>
<td><label for="<?php echo $quote['code']; ?>"><?php echo $quote['title']; ?></label>
</td>
<td style="text-align: right;"><label for="<?php echo $quote['code']; ?>"><?php echo $quote['text']; ?></label></td></tr>
<?php } ?>
<?php } else { ?>
<tr>
<td colspan="3"><div class="error"><?php echo $shipping_method['error']; ?></div></td>
</tr>
<?php } ?>
<?php } ?>
<?php } ?>
</table>
mysql_*functions in new code. They are no longer maintained and the deprecation process has begun on it. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial. – PeeHaa 埽 Dec 1 '12 at 22:25<?php ?>! – tereško Dec 1 '12 at 22:28