this works fine
<?php
#get database stuff
#blah blah
$f_strPrid=$row[1];
print\"
<form method=GET action=form.phtml>
<input type=hidden name=f_strPrID value=$uidproduct>
<input type=image src=images/cart.gif width=125 height=60
</form>
\";
?>
but i want to do this instead...
where html is equal to the same form stuff above..except i\'m gettin it from my db instead...but when this stuff is posted instead of seeing
form.phtml?f_strPrid=825
...i get
form.phtml?f_strPrid=%24uidproduct
<?php
#get database stuff
$f_strPrid=$row[1];
$f_strhtml=$row[2];
print\"
$html
\";
?>