How do i make a link submit a variable to another page? for example if a user clicked on a link i want it to send a variable to the page the user is going to. i am building an ecom site and i cant figure this out. any help would be welcome.
just write the link out when creating it
echo "<a href=\"someotherpage.php?var1=$value1&var2=$value2\">click here</a>";
hth