dongshi9407 2014-11-20 06:41
浏览 56
已采纳

PHP HTML表单多维数组MySQL

I have php page with code: Everything is working fine.

<?php
session_start();
include 'db.php';//database connection

if ( isset($_POST['permission']))
{
$x=$_POST['permission'];
$a=print_r($x);//print array structure

$permit_group=array('Dean','Principal');//redefine of permission array as already    
//defined in form permission[Dean][] etc.

$permit_no=count($permit_group);//count array size of all defined areas
$b=print_r($permit_no);//its out put is 2; i am looking for: $permit_no=count($x)???

for($i=0; $i<$permit_no; $i++)//for loop for all possible permission (Dean, Principal   
etc.)
{

$jj=count($permit_group['$i']);//count size of subarea given to to individual area 
//person and output is 0; i am looking for: $jj=count($x['area'])???
$c=print_r($jj);

for($j=0; $j<jj; $j++)
{
$x1=$permit_group[$i];//i am looking for this:$x1=$x[$i]; How can i do this ?
$x2=$x[$permit_group[$i]][$j];//i am looking for this:$x2=$x[$i][$j];How can i do this?
mysqli_query($connection,"INSERT INTO upermission (area, subarea) VALUES   
('$x1','$x2')");
}
}
}
?>
<div>
<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div>
<ul>Dean
<li><input type="checkbox" name="permission[Dean][]" value="list"/><label>List 
Principal   
</label></li>
<li><input type="checkbox" name="permission[Dean][]" value="Edit"/><label>Edit     
Principal   
</label></li>
</ul>

<ul>Principal: 
<li><input type="checkbox" name="permission[Principal][]" value="create"/>  
<label>Create Faculty</label></li>
<li><input type="checkbox" name="permission[Principal][]" value="edit"/><label>Edit  
Faculty</label></li>
<li><input type="checkbox" name="permission[Principal][]" value="add"/>  
<label>Add Faculty</label></li>
<li><input type="checkbox" name="permission[Principal][]" value="delete"/>  
<label>Delete Faculty</label></li>
</ul>
</div>
<input type="submit" name="submit" />
</form>
</div>

My questions are:

1) I am looking to get Area (Dean,Princial etc) and Subarea (Add, Edit etc.) value from HTML form only not to create array again as i created in php part?

2) Also to calculate size of only checked Area and Subarea, because size of Area and
subarea is different, to run both for loops to insert data into database table?

Please guide me how can i do?

Thanks

  • 写回答

3条回答 默认 最新

  • dsjq6977 2014-11-20 09:45
    关注

    HI, If your problem is only with the loops, then try this.

    $post_val = $_POST['permission'];   
    foreach($post_val as $key=>$value)
    {
        $x1 = $key;     
        for($i=0;$i<count($value);$i++)
        {
            $x2 = $value[$i];           
            mysqli_query($connection,"INSERT INTO upermission (area, subarea) VALUES
           ('".$x1."','".$x2."')");         
        }
    }
    

    If you want to build all this in the HTML only, then you have to deal with either javascript or jQuery.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
  • doumeilmikv7099 2014-11-20 06:51
    关注

    Will this help you out?

    foreach ($_POST['permission'] as $area) {
    
     foreach ($_POST['permission'][$area] as $subarea) {
    
      mysqli_query($connection, "INSERT INTO upermission (area, subarea) VALUES ('$area','$subarea')");
    
     }
    
    
    }
    
    评论
  • duanhui5344 2014-11-20 15:00
    关注

    This example is not how I would build it from scratch. I try to stay with your code as much as possible.

    You should seperate HTML and PHP when the HTML is not dynamic and you are using AJAX.

    I haven't tested it so there might be some (syntax) errors.

    The html:

    <form>
    
      <ul>Dean
        <li>
          <input id="dean_list" type="checkbox" value="List Principal"/>
        </li>
        <li>
          <label>Edit Principal</label>
          <input id="dean_edit" type="checkbox" value="Edit Principal"/>
        </li>
      </ul>
    
      <ul>Principal: 
        <li>
          <input id="principal_create" type="checkbox" value="Create Faculty"/>  
        </li>
        <li>
          <input id="principal_edit" type="checkbox" value="Edit Faculty"/>
         </li>
        <li>
          <input id="principal_add" type="checkbox" value="Add Faculty"/>  
        </li>
        <li>
          <input id="principal_delete" type="checkbox" value="Delete Faculty"/>  
        </li>
      </ul>
    
      <input onclick="submitForm()" type="button" value="submit">
    
    
    </form>

    Put this in the header, this gives you additional javascript function (JQuery):

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
    

    The javascript (handles) the ajax-request:

    function submitForm() {
      
      if (/* validate */) { // you could validate
        
        var querystring = '';
      
        if (document.getElementById("dean_list").checked) {
          querystring = querystring + 'permission[dean]=list&';
        }
      
        if (document.getElementById("dean_edit").checked) {
          querystring = querystring + 'permission[dean]=edit&';
        }
    
        if (document.getElementById("principal_create").checked) {
          querystring = querystring + 'permission[principal]=create';
        }
      
        if (document.getElementById("principal_edit").checked) {
          querystring = querystring + 'permission[principal]=edit';
        }
    
        if (document.getElementById("principal_add").checked) {
          querystring = querystring + 'permission[principal]=add';
        }
    
        if (document.getElementById("principal_delete").checked) {
          querystring = querystring + 'permission[principal]=delete';
        }
        
        /* AJAX code to submit form. */
        $.ajax({
        type: "POST",
        url: "", // the url of your php file
        data: querystring,
        cache: false,
        success: function(html) { // html is the response of the php
        alert(html);
        
      }
      else {alert('Message you want to display when input is not valid');}
      
    }

    The php:

    include 'db.php'; //database connection
    
    if (isset($_POST['permission'])) {
    
     foreach ($_POST['permission'] as $area) {
    
      foreach ($_POST['permission'][$area] as $subarea) {
    
       mysqli_query($connection, "INSERT INTO upermission (area, subarea) VALUES ('$area','$subarea')");
    
      }
    
     }
    
     echo 'Records added';
    
    }
    else {echo 'No records added.';}
    
    </div>
    
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 matlab+波形匹配算法
  • ¥15 转录组分析做聚类树图时癌旁组被分到了癌组
  • ¥15 大一Python字典
  • ¥15 multisim电路设计(相关搜索:设计报告)
  • ¥15 PC-lint Plus
  • ¥15 gpl24676注释
  • ¥15 php5.3内存泄露
  • ¥15 DigSilent如何复制复合模型到自己案例?
  • ¥15 求日版华为b610s-77a 官方公版固件,有偿
  • ¥15 关于#java#的问题,请各位专家解答!(相关搜索:java程序)