|
|
|
มีปัญหาขึ้นเตือนว่า Notice: Undefined index: รบกวนช่วยดูให้หน่อยนะครับ |
|
|
|
|
|
|
|
จขกท. จะทำฟอร์มสำหรับการเพิ่่มข้อมูล แต่พอกดบันทึกมันจะขึ้น
Notice: Undefined index: rep_date in C:\xampp\htdocs\it_system\user_repair_add.php on line 16
Notice: Undefined index: rep_idcust in C:\xampp\htdocs\it_system\user_repair_add.php on line 16
Notice: Undefined index: rep_namecust in C:\xampp\htdocs\it_system\user_repair_add.php on line 16
Notice: Undefined index: rep_hardcode in C:\xampp\htdocs\it_system\user_repair_add.php on line 16
Notice: Undefined index: rep_product in C:\xampp\htdocs\it_system\user_repair_add.php on line 16
Notice: Undefined index: rep_depart in C:\xampp\htdocs\it_system\user_repair_add.php on line 17
Notice: Undefined index: rep_symp in C:\xampp\htdocs\it_system\user_repair_add.php on line 17
save successfully
ซึ่งมันเพิ่มเป็นค่าว่างลงไปใน Database ไม่ได้เอาค่าที่เราคีร์ลงไปด้วย อยากขอความช่วยเหลือหน่อยครับ
อันนี้ Code หน้า FORM
Code (PHP)
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
<title>บริษัท วี เพาเดอร์เทค จำกัด</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<form name="form1" method="post" action="user_repair_add.php">
<nav class="white" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="index.php" class="brand-logo">วี.เพาเดอร์เทค</a>
<ul class="right hide-on-med-and-down">
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>
<nav>
<div class="nav-wrapper container">
<div class="col s12">
<a href="#!" class="center breadcrumb">แจ้งซ่อมอุปกรณ์</a>
</div>
</div>
</nav>
<div class="container">
<h4 class="header center teal-text text-lighten-2">กรุณากรอกข้อมูล</h4>
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s4"><i class="material-icons prefix">query_builder</i>
<input type="text" id="rep_date" class="validate" value="<?=date("d-m-y");?>" disabled="disabled">
<label for="rep_date">วันที่</label>
</div>
<div class="input-field col s6"><i class="material-icons prefix">credit_card</i>
<input id="rep_hardcord" type="text" class="validate">
<label for="rep_hardcord">รหัสทรัพย์สิน</label>
</div>
</div>
<div class="row">
<div class="input-field col s4"><i class="material-icons prefix">credit_card</i>
<input type="text" id="rep_idcust" class="validate" maxlength="13">
<label for="rep_idcust">รหัสพนักงาน</label>
</div>
<div class="input-field col s6"><i class="material-icons prefix">perm_identity</i>
<input type="text" id="rep_namecust" class="validate">
<label for="rep_namecust">ชื่อพนักงาน</label>
</div>
</div>
<div class="row">
<div class="input-field col s4"><i class="material-icons prefix">description</i>
<input type="text" id="rep_hardcode" class="validate">
<label for="rep_hardcode">รหัสทรัพย์สิน</label>
</div>
<div class="input-field col s6"><i class="material-icons prefix">android</i>
<input type="text" id="rep_product" class="validate">
<label for="rep_duct">ชื่ออุปกรณ์</label>
</div>
<div class="input-field col s10"><i class="material-icons prefix">location_on</i>
<input type="text" id="rep_depart" class="validate">
<label for="rep_depart">สถานที่</label>
</div>
</div>
<div class="row">
<form class="col s12">
<div class="input-field col s10"><i class="material-icons prefix">settings_ethernet</i>
<textarea id="rep_symp" class="materialize-textarea"></textarea>
<label for="rep_symp">อาการ</label>
</div>
<p class="right-align">
<button class="btn btn-large waves-effect waves-light" type="submit" name="submit" value="LOGIN">บันทึก</button>
</p>
</div>
</form>
</div>
</form>
</div>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
</form>
</body>
</html>
ส่วนอันนี้หน้าที่รับข้อมูลครับ
Code (PHP)
<html>
<body>
<?php
ini_set('display_errors',1);
error_reporting(~0);
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "it_system";
$conn = mysqli_connect($servername,$username,$password,$dbname);
$sql = "INSERT INTO rep_form (rep_idcust,rep_date,rep_namecust,rep_depart,rep_product,rep_hardcode,rep_symp)
VALUES ('".$_POST['rep_date']."','".$_POST['rep_idcust']."','".$_POST['rep_namecust']."','".$_POST['rep_hardcode']."','".$_POST['rep_product']."',
'".$_POST['rep_depart']."','".$_POST['rep_symp']."')";
$query = mysqli_query($conn,$sql);
if($query) {
echo "save successfully";
}
mysqli_close($conn);
?>
</body>
</html>
Tag : PHP, MySQL, Ms SQL Server 2012, HTML/CSS
|
|
|
|
|
|
Date :
2016-02-21 22:25:30 |
By :
washabi |
View :
1050 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2016-02-21 23:17:36 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|