I looked everywhere and tried everything to get the selected mySQL value from a sQL queries radion button.
here is my code
<?php
while($p1Result = mysql_fetch_array($p1Query))
{?>
<input type="radio" id="txtShop" name="txtShop" value="<?php $p1Result['buy_code'];?>"> <?php echo $p1Result['buy_code']. " " .$p1Result['buy_name']; ?><br>
<?php
}
?>
Thanks