一个简单的操作,但它给出了一个错误,我想更新每个id

It is simple but I am not getting values of radio buttons for updation when I press submit.

It is giving an error in foreach statement like :Warning: Invalid argument supplied for foreach() Please say how to get the values of radio button after pressing submit button, here I am updating the status of state .

            <?php
    include("db.php");
    ?>
    <html>
    <body>
    <?php 
    $state=$_POST['state'];
    if(isset($_POST['submit']))
    {
    $result1 = mysql_query("select state,id,status from        states   ");
    while($rr1=mysql_fetch_array($result1))
    {
        //getting values of radio buttons
                    $myval=$rr1['id'];
        echo $myval;
        $val=$_POST['yes.$rr1["id"]'];
        echo $val;
        $val1=$val.$myval;
        $vall=yes.$rr1['id'];
        foreach($vall as $values)
        {
            echo $values;
        $update=mysql_query("UPDATE states SET status='".     $values."'          
WHERE id='$myval' ");       

   }
    }
    }
    echo "ok";
    ?>




    <form action="" name="form" id="form" method="post" >
    <?php
    //session_start();
    include("db.php");





    $result = mysql_query("select state,id,status from       states   ");


    while($info1=mysql_fetch_assoc( $result))
      {

         echo $info1['city'];
         echo "<br>";
          /*echo "<br>";
          echo "company Name:".$info1['company_name'];
          echo "<br>";
          echo "salary:".$info1['maxsalary'];
          echo "<br>";
          //echo $info1['company_name'];*/

      ?>
    <label><?php echo $info1['state']; ?></label>

    <input type="radio" <?php if($info1['status']=="yes"){    echo                       
        "checked='checked'"; } ?> name="yes.<?php echo $info1[   'id']; ?>[]"
           value="yes">Yes


    <input type="radio" <?php if($info1['status']=="no"){     echo       
        "checked='checked'"; } ?> name="yes.<?php echo $info1[    'id']; ?>[]"
  value="no">no

    <br/>
    <?php } ?>
    <br />
    <input type="submit"  name="submit" value="submit" />
    </form>
    </body>
    </html>

I think you need to write

 $vall=yes.$rr1['id'];

   to

 $vall="yes".$rr1['id'];

Thanks