sql >> データベース >  >> RDS >> Mysql

複数の$_POST配列からMYSQL行に挿入する方法

    代わりにforループを使用できます

    for ($i=0; $i < count($_POST['copiestoname']); $i++ ) {
      $copiestoname = mysql_real_escape_string($_POST['copiestoname'][$i]);
      $copiestoinst = mysql_real_escape_string($_POST['copiestoinst'][$i]);
      $copiestomethod = mysql_real_escape_string($_POST['copiestomethod'][$i]);
    
      mysql_query("INSERT INTO copiesto (name, institution, method) VALUES ('$copiestoname', '$copiestoinst', '$copiestomethod')") or die(mysql_error());
      echo "Completed";
    }
    



    1. PL / SQLを介してOracleをエクスポートしようとすると、日付は0000-00-00になります。

    2. SQL、テーブルの作成

    3. MySQLGUIプログラム

    4. MySQL:グループでTIMEDIFF()をSUM()する方法は?