Hello, can you all help me to set the loop value using the foreach? I wanted to set the value to all of the radio button but the value is empty.
$golden = $decodedArray['msg'];
$reeArray = array();
foreach($golden as $key=>$kuda){
$reeArray[] = $kuda['shipping_fee'];
echo "<tr>";
echo "<td >"."<input type=radio name=radioName value=echo $kuda[shipping_fee]; />"."$kuda[shipping_fee]"."</td>";
echo "<td>" .$kuda['shipping_name']."</td>";
echo "<td>" .$kuda['shipping_fee']."</td>";
echo "<td>" .$kuda['shipping_time']."</td>";
echo "</tr>";