|
|
|
ช่วยตรวจสอบ Code PHP+PDO INSERT ข้อมูลลงฐานไม่่ผ่าน แต่ไม่ขึ้น Error |
|
|
|
|
|
|
|
Code (PHP)
<?php
if(!isset($_SESSION)){
session_start();
}
include './include/functions.php';
chech_admin();
$db['host'] = 'localhost';
$db['user'] = 'root';
$db['pass'] = '';
$db['name'] = 'pkn2webapp';
try{
$con = new PDO("mysql:host=".$db['host']."; dbname=".$db['name']."", $db['user'], $db['pass'],
array(PDO::MYSQL_ATTR_INIT_COMMAND=>"SET NAMES utf8"));
//echo "ติดต่อฐานข้อมูลได้แล้ว";
} catch (PDOException $e){
echo $e->getMessage();
}
$errorpost='no';
if (isset($_POST) && isset($_POST['submit'])){
if ($errorpost=='no'){
if($_FILES['file']['name'] != "")
{
$Filename = $_FILES['file']['name'];
$type = $_FILES['file']['type'];
//เก็บชื่อไฟล์เป็นเวลาขณะที่ upload แล้วตามด้วยนามสกุลไฟล์ ถ้าไฟล์มีชื่อเหมือนกันจะได้ไม่มีปัญหา
//สามารถ upload ไฟล์นามสกุล .gif, .png, .jpg, .zip, .docx, .pdf, .doc, .swf, .rar ได้
$time = time() * microtime();
if ( $type == "image/gif" ) {$Filename = $time.".gif"; $pic_type = 'GIF'; }
else if ( $type == "image/png" ) {$Filename = $time.".png"; $pic_type = 'PNG'; }
else if (( $type == "image/jpg") or ($type=="image/jpeg") or ($type == "image/pjpeg")) {$Filename = $time.".jpg"; $pic_type = 'JPG'; }
//move ไฟล์ไปยังโฟลเดอร์ที่สร้างไว้ในที่นี้คือ fileupload
if(move_uploaded_file($_FILES['file']['tmp_name'], 'img/banners/'.$Filename)){
//จัดเก็บชื่อไฟล์ลงฐานข้อมูล
$result = $con->prepare("INSERT INTO banner(bn_file,bn_position,bn_us_id,bn_created,bn_us_id_edit,bn_edit,us_status) "
. "VALUES(".$Filename.",".$_POST['position'].",'".$_SESSION['user']['us_id']."','".date("Y-m-d H:i:s")."','0','0000-00-00 00:00:00'".$_POST['status'].")");
$result->execute();
if($result!==FALSE)
{
$_SESSION['flash']['msg']="บันทึกข้อมูลเรียบร้อย".$Filename.$_POST['position'].$_SESSION['user']['us_id'].date("Y-m-d H:i:s").$_POST['status'];
$_SESSION['flash']['type']='success';
redirect_to('admin_banner_show.php');
}else{
$_SESSION['flash']['msg']="บันทึกข้อมูลไม่ได้";
$_SESSION['flash']['type']='danger';
redirect_to('admin_banner_show.php');
}
}
}
}
}
include './include/header.php';
if(isset($_SESSION['flash'])){?>
<div class="alert alert-<?php echo $_SESSION['flash']['type'];?>" role="alert"><?php echo $_SESSION['flash']['msg']; ?></div>
<?php }?>
<div class="example">
<div class="row">
<div class="col-md-6">
<h2 class="example-title"><img src="favicon_16.ico">สมัครสมาชิก</h2>
<form role="form" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="file">เลือกไฟล์</label>
<input type="file" name="file" id="file" class="form-control" required="required"/>
</div>
<div class="form-group">
<label for="position">ตำแหน่ง</label>
<select name="position" id="position" class="selecter_3" data-selecter-options='{"cover":"true"}'>
<option value="header">Header</option>
</select>
</div>
<label for="status">สถานะ</label>
<div class="radio">
<input type="radio" name="status" id="flat-radio-4" checked="" value="enable">
<label for="flat-radio-4">Enable</label>
<input type="radio" name="status" id="flat-radio-5" value="disable">
<label for="flat-radio-5">Disable</label>
</div>
<input type="submit" name="submit" value="ยืนยัน" class="btn btn-primary">
<input type="button" value="ยกเลิก" class="btn btn-warning" onclick="window.location='admin_banner_show.php'">
</form>
</div>
</div>
</div>
<?php
include './include/footer.php';
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2014-07-26 13:39:16 |
By :
ctpo00712191 |
View :
1873 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มี if หลายตัว มันเข้าเงื่อนไขในการ insert หรือเปล่าครับ ลอง echo แถว ๆ ตรงนี้ $result->execute(); ดูครับ
|
|
|
|
|
Date :
2014-07-27 07:24:02 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง INSERT ก่อน move_uploaded_file ดูครับ
หรือ แยกส่วนกันระหว่าง Upload กับ Insert สำหรับ Test
ทีละจุด จะได้เห็นจุดที่ Error
หรือ อาจจะ check ทีละจุด เลย
Code (PHP)
if (isset($_POST) && isset($_POST['submit'])){
echo 'check1';
if ($errorpost=='no'){
echo 'check2';
if($_FILES['file']['name'] != ""){
echo 'check3';
if(move_uploaded_file($_FILES['file']['tmp_name'], 'img/banners/'.$Filename)){
echo 'check4';
|
|
|
|
|
Date :
2014-08-04 10:27:56 |
By :
fossil31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|