开发者

Getting checkbox-selected data from Table A inserted into Table B

开发者 https://www.devze.com 2022-12-21 03:54 出处:网络
I have a Table A with thousands of records.On each displayed page, only 20 rows are showing, with the following fields:

I have a Table A with thousands of records. On each displayed page, only 20 rows are showing, with the following fields:

check
last_name 
first_name 
gr 
eth 
sex 
id_num (a unique value)
reason 
start_date

The "check" field indicates a che开发者_如何学Gockbox that the user can tick. At the bottom of each page of 20 records is the select button. I want to take the unique "id_num" from the rows that are selected by the user from Table A and insert them into Table B. (Method is post.)

Checkbox input code:

$html = <input type='checkbox' name='checkbox[]'
                      id = '' value='<?PHP echo $aRecords [ \"id_num\" ]; ?>' />" ;

The SQL after the rows on a page are selected by the user:

include_once "db_login.php" ;
if ( isset ( $_POST [ checkbox] ) ) 
   { 
      foreach ( $_POST [ 'checkbox' ] as $checkbox )
         {
            $sql = "INSERT INTO sap_id_select ( select_id )
                    VALUES ( '<???>' ) " ;
            mysql_query ( $sql ) or ( "Error " . mysql_error () ) ;
         }
   }

Also tried, in addition to many other things:

foreach ( $_POST [ 'checkbox' ] as $checkbox )
         {
            $id_list = implode(',',$_POST['checkbox']);
            $sql = "INSERT INTO sap_id_select ( select_id )
                    VALUES ( '{$id_list}' ) " ;
         }

How can I get the id_num field into the $_POST array and then into Table B?


 $html = <input type='checkbox' name='checkbox[]'
                  id = '' value='<?PHP echo $aRecords [ \"id_num\" ]; ?>' />" ;

You're missing the open quote aren't you? So the above doesn't give you an error that means your opening quote is above this line in other words, it's all messed up. Use an editor that colors your syntax.

Assuming you wanted to write

 $html = "<input type='checkbox' name='checkbox[]'
                  id = '' value='<?PHP echo $aRecords [ \"id_num\" ]; ?>' />" ;

then php will interpret the <?PHP bit litterally, which would explain what you're seeing. You want simply:

 $html = "<input type='checkbox' name='checkbox[]'
                  id = '' value='".$aRecords["id_num"]."' />" ;

Or is what you wrote is not in the php excuted part of your code then all I can suggest is to put <?php instead of <?PHP but I doubt very much it's what's causing problems. My bet is on the above.


It looks like you have things set up OK. try

  $sql = "INSERT INTO sap_id_select ( select_id )
                VALUES ( '.$checkbox.' ) " ;

Maybe you can say if there are specific errors that you are getting.


Vincent -- I changed the html checkbox input code to

$html .= "<input type='checkbox' name='checkbox[]' id = ''
            value='$aRecords ['id_num']' />" ;

Assuming that this is correct (?), what would be my SQL INSERT statement to INSERT the unique record number (id_num) into Table B?? The following SQL, of course, doesn't work.

include_once "db_login.php" ;
if ( isset ( $_POST [ checkbox] ) ) 
   {  
      foreach ( $_POST [ 'checkbox' ] as $checkbox )
         {  
            $sql = "INSERT INTO sap_id_select ( selected_id )
                    VALUES ( '{ $_POST [ checkbox ]}'
                           ) " ;
            mysql_query ( $sql ) or ( "Error " . mysql_error () ) ;
         }
   }
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号