|
|
|
ช่วยดูให้หน่อยคะ เครียดมาก ปัญหาคือไม่สามารถเพิ่ม singer_id ลงในฐานข้อมูลได้ ที่ตาราง tb_concert |
|
|
|
|
|
|
|
ปัญหาคือไม่สามารถเพิ่ม singer_id ลงในฐานข้อมูลได้ ที่ตาราง tb_concert คะ
<?
ob_start();
session_start();
if(empty($user_admin)) // ตรวจสอบว่าผ่านการ login หรือไม่
{
header('location:admin_form.php');
exit();
}
include_once( "headeradmin.php");
?>
<table width="764" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#D2E9FF" class="style18"><a href="admin_form.php" class="style1"> หน้าแรก</a><a href="concertmain.php" class="style1"> หน้าผู้ดูแลระบบ</a><a class="style1">>>เพิ่มรายการคอนเสิร์ต</td>
</tr>
</table>
<table width="764" height="424" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<form method="POST" action="concert_add.php"name="regis" onSubmit="return checkFields2();">
<!--DWLayoutTable-->
<tr bordercolor="#CCCCCC" bgcolor="#FFFFFF">
<td height="30" colspan="2" valign="top">
<div align="left" class="style9">
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<p class="style16">เพิ่มรายการคอนเสิร์ต</p>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
</div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="28" valign="top"><div align="right" class="style14">ชื่อคอนเสิร์ต:</div></td>
<td valign="top"><input name="concert_name" type="text"> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="28" valign="top"><div align="right" class="style14">วันที่เปิดแสดง:</div></td>
<td valign="top"><span class="style15">
<input name="concert_show" type="date">
(YYYY-MM-DD) </span></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="28" valign="top"><div align="right" class="style14">ประตูเปิด:</div></td>
<td valign="top"><span class="style15">
<input name="concert_openh" type="text" size="5">
<input name="concert_openmm" type="text" size="5">
น.</span></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="28" valign="top"><div align="right" class="style14">รายละเอียดคอนเสิร์ต:</div></td>
<td valign="top"><span class="style15">
<textarea row="5" name="concert_detail" cols="30"></textarea>
</span> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><div align="right" class="style14">ไฟล์รูปภาพ:</div></td>
<td valign="top"><input name="concert_pic" type="text">
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><div align="right" class="style14">ไฟล์รูปภาพ1:</div></td>
<td valign="top"><input name="concert_pic1" type="text"> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><div align="right" class="style14">ไฟล์รูปภาพ2:</div></td>
<td valign="top"><input name="concert_pic2" type="text"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><div align="right" class="style14">ไฟล์รูปภาพ3:</div></td>
<td valign="top"><input name="concert_pic3" type="text"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><div align="right" class="style14">ศิลปิน:</div></td>
<td height="5">
<?
include_once ("c1.php");
$sql="select * from tb_singer order by singer_id";
$result=mysql_db_query($db,$sql);
?>
<select name"singer">
<?
while ($r=mysql_fetch_array($result)){
$singer_id=$r[singer_id];
$singer_name=$r[singer_name];
?>
<option value="<? echo"$singer_id";?>"> <? echo"$singer_name";?> </option>
<?
}
?>
</select>
</span></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25" colspan="2"><blockquote class="style15">
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<p>
</p>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
<div align="left" class="style15">
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<p>
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Reset" value="Reset">
</p>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
</div>
</form>
</table>
<?
include_once"footeradmin.php";
?>
</body>
</html>
concert_add.php
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
background-image: url(images/bk1.gif);
}
.style6 {
color: #0066CC;
font-size: 16pt;
font-family: "MS Sans Serif", Tahoma, sans-serif;
}
-->
</style></head>
<body>
<?
ob_start();
session_start();
if(empty($user_admin)) // ตรวจสอบว่าผ่านการ login หรือไม่
{
header('location:admin_form.php');
exit();
}
?>
<?
$concert_id=$_POST[concert_id];
$concert_name=$_POST[concert_name];
$concert_show=$_POST[concert_show];
$concert_openh=$_POST[concert_openh];
$concert_openmm=$_POST[concert_openmm];
$concert_detail=$_POST[concert_detail];
$concert_pic=$_POST[concert_pic];
$concert_pic1=$_POST[concert_pic1];
$concert_pic2=$_POST[concert_pic2];
$concert_pic3=$_POST[concert_pic3];
$singer_id=$_POST[singer_id];
include_once"headeradmin.php";
include_once "c1.php";
$sql="select * from $tb_concert ";
$db_query=mysql_db_query($db,$sql);
mysql_query("INSERT INTO tb_concert (concert_id,concert_name,concert_show,concert_openh,concert_openmm,concert_detail,concert_pic,concert_pic1,concert_pic2,concert_pic3,singer_id)
values ('','$concert_name', '$concert_show', '$concert_openh','$concert_openmm' ,'$concert_detail','$concert_pic','$concert_pic1','$concert_pic2','$concert_pic3','$singer_id')") ;
?>
<table width="764" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#D2E9FF" class="style18"><a href="admin_form.php" class="style1"> หน้าแรก</a><a href="concertmain.php" class="style1">>>หน้าผู้ดูแลระบบ</a><a href="insertconcert_form.php"class="style1">>>เพิ่มรายการคอนเสิร์ต<a class="style1">>>เพิ่มรายการคอนเสิร์ตสำเร็จ</td>
</tr>
</table>
<table width="764" height="400" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<th valign="top" scope="col"><br>
<br>
<br>
<br>
<br>
<br>
<span class="style6">เพิ่มรายการคอนเสิร์ตเรียบร้อยแล้ว<br>
<br>
</span><span class="style6"><a href=concertmain.php >กลับหน้าหลัก</a></span></th>
</tr>
</table>
<? include_once"footer.php";?>
<?
mysql_close();
?>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
13 มี.ค. 2549 09:14:03 |
By :
mink |
View :
2101 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ที่ฟอร์มไฟล์
<select name"singer">
แต่ที่ไฟล์ concert_add.php ตัวแปรที่รับเข้ามากลับชื่อ singer_id
$singer_id=$_POST[singer_id];
คิดว่าน่าจะเป็นตรงนี้นะ ชื่อไม่ตรงกัน
|
|
|
|
|
Date :
13 มี.ค. 2549 15:07:53 |
By :
faker |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CD 30 เพื่อศึกษาและวิจัย เกม ซอฟร์แวร์ แผ่นสอน และอื่น ๆ อีกมากมายเชิญชมที่ http://www.faster.here.ws/
|
|
|
|
|
Date :
19 มี.ค. 2549 04:59:27 |
By :
asd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|