I have nineteen fields. 4 fields are not changeable and it is from header form. 15 fields are changeable from 5 detail forms. when I try to insert multiple rows of some field data that might be came from all rows in the table #1, table #2, table #3, table #4 and table #5. One of example is attached in this post.
sample code for table #1. For table #2 to table #5, it is same way but different id or name.
<!DOCTYPE HTML>
<html lang="en-US">
<?php require_once("head.php");?>
<body>
<div class="container">
<?php require_once("header.php");?>
<div class="row">
<div class="col-md-12">
<div style="margin-bottom: 20px">
<div class="page-header">
<h4> <p style="color:black;">form data</p></h4>
<br>
</div>
<div style="margin-bottom: 20px"></div>
<form role="form" class="form-horizontal" method="post" action="addform.php" style="margin-bottom: 10px">
<!-- <form name="formalbum" action="pagination.php" method="post"> -->
<div>
<div class="form-group">
<label class="control-label col-sm-2">Country</label>
<div class="col-sm-4">
<input type="text" id="country2" name="country2" value="<?php
echo $country2;
?>" readonly = "readonly" required>
</div>
</div>
<!-- table 4 angka mulai -->
<label style="color:maroon;">Table #1 data</label>
<br>
<div class="table-responsive">
<table class="table table-striped" cellspacing="0" border="1" cellpadding="3">
<tbody id="calculation">
<tr class="row">
<tr>
<td> country </td>
<td>test2 (4 digits)</td>
<td>test21 (4 digits)</td>
<td id="myelement">price</td>
<td>test22 (4 digits)</td>
<td>Del</td>
</tr>
<td><input class="underline-input" style="width: 10rem" type="text" id="country1" name="country1[0]" value="<?php
echo $country; ?>" readonly = "readonly">
</td>
<td><input class="underline-input" style="width: 10rem" type="text" id="test2" name="test2[0]" maxlength="4" pattern="\d{4}"/></td>
<td><input class="underline-input multi" style="width: 10rem" type="number" id="test21" name="test21[0]" /></td>
<td id="myelement"><input class="underline-input multi" style="width: 10rem" type="number" id="price" name="price[0]" value="<?php echo $pricebsa; ?>"/></td>
<td><input class="underline-input amount" style="width: 10rem" type="number" id="test22" name="test22[0]" readonly="readonly"/></td>
<td><button type="button" class="del">Del</button></td>
</tr>
<tr id="last">
<td colspan="4" align="left"><button type="button" id="addRow">Add</button></td>
</tr>
</tbody>
<script>
$(document).ready(function(){
$('#calculation').on("keyup",".multi",function(){
var parent = $(this).closest('tr');
var quant= $(parent).find('#test21').val();
var price= $(parent).find('#price').val();
$(parent).find('#test22').val(quant* price);
GrandTotal();
});
function GrandTotal(){
var sum='';
$('.amount').each(function(){
sum+=Number($(this).val());
});
$('#total').val(sum);
}
});
var template = '';
$(function(){
$("#addRow").click(function(){
row = '<tr>'+
'<td><input class="underline-input" type="text" style="width: 10rem" id="country1" name="country1['+template+']" maxlength="4" value="<?php
echo $country; ?>" readonly = "readonly"/></td>'+
'<td><input class="underline-input" type="text" style="width: 10rem" id="test2" name="test2['+template+']" maxlength="4" "/></td>'+
'<td><input class="underline-input multi" type="number" style="width: 10rem" id="test21" name="test21['+template+']"/></td>'+
'<td id="myelement"><input class="underline-input multi" type="number" style="width: 10rem" id="price" name="price[0]" name="price['+template+']" value="<?php echo $pricebsa; ?>"/></td>'+
'<td><input class="underline-input amount" type="number" style="width: 10rem" id="test22" name="test22['+template+']" readonly="readonly"/></td>'+
'<td><button type="button" class="del">Del</button></td>'+
'</tr>';
$(row).insertBefore("#last");
i++;
});
});
$(".del").live('click', function(){
$(this).parent().parent().remove();
});
$("#calculation").append(template);
</script>
</table>
</div>
sample php code:
<?php
include_once("db.php");
if(!$_SESSION['id']) {
header("location: addform.php");
}
if(!$_POST){
die('No data!');
}
//current time
$timestamp = time();
$today = date('Y-m-d h:m:s');
$now = new DateTime('now');
$district = '';
$day = $now->format('D');
$date = new DateTime("now", new DateTimeZone('Asia/Jakarta') );
// Set timezone ke SGP
date_default_timezone_set('Asia/Singapore');
// Current datetime
$current_time = strtotime(Date('H:i:s'));
// country
$country1 = '';
// Rules untuk value Country
if ($current_time >= strtotime('10:00:00') && $current_time < strtotime('15:45:00')) {
$country1 = 'JPN';
} elseif ($current_time >= strtotime('16:00:00') && $current_time < strtotime('18:45:00')) {
$country1 = 'SGP';
} elseif ($current_time >= strtotime('19:00:00') && $current_time < strtotime('21:45:00')) {
$country1 = 'AUS';
} else {
$country1 = 'PNG';
}
//db connection database
$db = new mysqli("127.1.0","admin","admin_131");
if($db->connect_errno > 0){
die('Unable to connect to database [' . $db->connect_error . ']'); }
mysqli_select_db($db,"appnamedb");
// header
$resultExec1 = mysqli_query($db, "insert into header " .
"(user_id,
buyer,
country,
trxid,
total
) " .
"VALUES ('" . $_SESSION['id'] . "', " .
"'" . $_POST['name'] . "', " .
"'" . $_POST['country2'] . "', " .
"'" . $_POST['trxid'] . "', " .
"'" . $_POST['total1'] . "')");
$query1 = mysqli_query($db, "SELECT max(Alt_Id) AS id_header FROM header limit 1");
$data = mysqli_fetch_array($query1);
$id_header = $data['id_header'];
foreach($_POST['country1'] as $key => $ctry){
$country1 = $ctry;
$resultExec2 = mysqli_query($db,
"insert into detail " .
"(
user_id,
country,
id_header,
test2,
test21,
test22,
test3,
test31,
test33,
test3,
test31,
test32,
test4,
test41,
test42,
test5,
test51,
test52,
test6,
test61,
test62
) " .
"VALUES (
'" . $_SESSION['id'] . "', " .
"'" . $ctry . "', " .
"'" . $id_header . "', " .
"'" . $_POST['test2'][$key] . "', " .
"'" . $_POST['test21'][$key] . "', " .
"'" . $_POST['test22'][$key] . "', " .
"'" . $_POST['test3'][$key] . "', " .
"'" . $_POST['test31'][$key] . "', " .
"'" . $_POST['test33'][$key] . "', " .
"'" . $_POST['test4'][$key] . "', " .
"'" . $_POST['test41'][$key] . "', " .
"'" . $_POST['test42'][$key] . "', " .
"'" . $_POST['test5'][$key] . "', " .
"'" . $_POST['test51'][$key] . "', " .
"'" . $_POST['test52'][$key] . "', " .
"'" . $_POST['test6'][$key] . "', " .
"'" . $_POST['test61'][$key] . "', " .
"'" . $_POST['test62'][$key] . "')");
}
echo 'Data are saved';
header("location:addform.php");
have to insert all fields data by foreach loop but when I insert data through foreach loop, some blank entries also inserts in database and also I am getting this PHP error:
PHP Notice: Undefined offset: 1 in C:\xampp5\htdocs\appname\processform.php on line 107 to xxxx
Can anybody help me ?