Hi There,
I am trying to get a link using two variables to go to a specific webpage with results.
[php]$iPartID = $_GET[“PartID”];
$iColor_ID = $GET[“ColorID”][/php]
I have set the two get statements up above
and in the table I have the following link
[php]ECHO “
";[/php]
I want to add in
[php][‘colorid’][/php]
into the link so it takes me to another page where I just get the partID and ColorID displaying, I know that to get the later I need to create a where statement with a & to separate the two variable but I am stuck for what to do on a link. I have looked it up and cannot seem to find any solid answers.
Thanks