Hope someone can help put with this - I have inherited a site and am trying to modify some PHP that I am unfamiliar with. I have gotten so far with it, but still have a problem with it.
Its a page on an online store offering optional extras depending on the product. The products are furniture, so and there was an option to buy cushions for some. The change I am trying to make is to have an option for two different sizes of cushion depending on the product.
So there was a field 'cushions' in the product table, and a page 'accessories.php' that offered the option to add cushions.
I have added a new field 'cushions2' and a new page 'accessories2.php' to cover the new size of cushions.
The site is here, with this example product:
http://www.lloydloomonline.com/product.php?id=32
If you click 'Add to cart' the next page offers you the option to add custom paintwork.
If you enter something there, and click on 'Add colour to order' it works - i.e. the next page is the one offering the cushions.
But if you just click on 'No thank you, proceed with order' it just reloads the page - basically the URL isn't being puled through as it should be.
On that page the PHP at the top of the page looks like this:
<?phpsession_start();$page = "paintwork";include("../includes/header.php");include("../includes/db_open.php");$sql = "SELECT p.*, c.`name` AS `categoryname` " . "FROM `products` p, `categories` c " . "WHERE p.`category` = c.`id` " . "AND p.`id` = '" . $_SESSION["basket"]["items"][$_REQUEST["id"]]["product"] . "'";$result = mysql_query($sql) or die("Query failed : $sql at line " . __line__);$row = mysql_fetch_assoc($result);if (!empty($_POST)) { $_SESSION["basket"]["items"][$_POST["id"]]["paintwork"] = $_POST["colour"]; if ($row["cushions"] == -1) { $url = "accessories.php?id=" . $_REQUEST["id"]; } else if ($row["cushions2"] == -1) { $url = "accessories2.php?id=" . $_REQUEST["id"]; } else if (!empty($row["glasstop"])) { $url = "glasstop.php?id=" . $_REQUEST["id"]; } else { $url = "shopping_cart.php"; }?>
And the form with the input / submit looks like this:
<form method="post" action="<?php echo $_SERVER["PHP_SELF"]?>" onsubmit="return validate(this)">
<label for="quantity" style="float: left; width: 75px; margin: 0">COLOUR</label>
<textarea name="colour" id="colour" style="float: left; height: 80px; width: 250px"></textarea>
<img src="images/spacer.gif" class="clear" style="height: 10px" />
<input type="submit" value="ADD COLOUR TO ORDER" id="submit" onmouseover="this.style.color = '#DBC87B'" onmouseout="this.style.color = '#FFFFFF'" style="float: left; margin-left: 75px; margin-right: 10px; width: 255px; padding-bottom: 3px; height: 23px" />
<a href="<?php echo $url?>" style="float: left; color: #251717; background-color: #DBC87B">NO THANKYOU, PROCEED WITH ORDER</a>
<input type="hidden" name="id" value="<?php echo $_REQUEST["id"]?>" />
</form>
Hope that makes sense - I think it must nearly be there, as all the conditional code seems to work, but the URL isn't being pulled through correctly in the form.
If anyone could have a look and hopefully get megabuck on track, I'd really appreciate it.
Thank you.