Hello ppl,
I have made an computer site , and now I need to make an on-line configurator for the site, so the visitors should configure an computer by chosing first procesor type, after motherboard ....
I made first page from where they can chose which procesor they wanna have, so there are 2 links AMD and INTEL
After one link is pressed a new page will load with two comboboxe filds one is with all AMD procesors and one with all mothorbords which suports amd procesor.
the code for procesor is this :
<select class="linktd" name="proc_tip">
<?php
require("db.inc.php");
$result = mysql_query("SELECT * FROM procesoare WHERE tip = 'AMD'");
while ($data = mysql_fetch_array ($result)){
echo" <option value=\" " . $data["price"] . " \" > " . $data["model"] . "</option>";
}
?>
</select>
After submit button is pressed a new page is loaded with other fields to chose like ram, video card and other optional components.
I want in this 3rd page to be displayed the total price for procesor and motherboard and the name to for those two components. I don't know how to display in the 3rd page the name of the procesor and motherboard I selected in 2nd.
You can see that in "value" I have the price of the component which is displayed in the 3rd page, but I need next to the price to be the name of the component I selected.
If you have understand what I tried to explain here and if you know how to help me pls send me an reply, cause I realy need to do this configurator.
Till I get an answer from you I will try to do it maibe in other way...
10x and see ya