|
|
|
เวลาที่เรา add ข้อมูลลง table แล้วก็มีหน้าต่างสะแดงข้อมูลที่ add .แต่ทำไหม cell ที่โชข้อมูลโชข้อมูลไม่คบคะแบบว่าโชไม่หมดคะ |
|
|
|
|
|
|
|
ดูตรง connect และก็ meta tag ด้วยครับ
|
|
|
|
|
Date :
2012-06-05 10:30:26 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอบความคิดเห็นที่ : 3 เขียนโดย : mr.win เมื่อวันที่ 2012-06-05 10:30:26
รายละเอียดของการตอบ ::
... ก็ไส่แล้วนะ
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$SQL = "select * from shortcode where ShortcodeName='".$_POST["textShortcodeName"]."' "; /*ส่วนที่กวดสอบว่ามีข้อมูลที่จะป้อนเข้าไปไหม่หลืยัง ภ้าบ่อมี จี่งสามาด add ได้ แต่ถ้ามีแล้วบ่อไห้ add ลงอีก.*/
$Query = mysql_query($SQL);
$Result = mysql_fetch_array($Query);
if($Result)
{
echo "<script language='javascript'>alert('มีแล้ว'); history.back(); </script>";
exit;
}
else {
$strSQL = "";
$strSQL = "INSERT INTO shortcode";
$strSQL .="(ShortcodeName,Company,Effect_time,Expire_time,Reference,Price,Tax,Share_ETL,Share_partner,Tel,Note) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["textShortcodeName"]."','".$_POST["textCompany"]."','".$_POST["textEffectTime"]."' ";
$strSQL .=",'".$_POST["textExpireTime"]."','".$_POST["textRefer"]."','".$_POST["textPrice"]."','".$_POST["textTax"]."','".$_POST["textETL"]."','".$_POST["textPart"]."','".$_POST["textTel"]."','".$_POST["textNote"]."') ";
$objQuery = mysql_query($strSQL)or die (mysql_error());
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
} }
mysql_close($objConnect);
?>
</body>
</html>
....
|
|
|
|
|
Date :
2012-06-05 10:34:16 |
By :
Cat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องเพิ่มข้อมูลใหม่ครับ ใช้เป็นแบบ UTF-8 ครับ รองรับหลายภาษาครับ
|
|
|
|
|
Date :
2012-06-05 12:13:51 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เวลา connect น้อง cat ต้องใส่
Code (PHP)
mysql_query("SET NAMES UTF8");
mysql_query("SET character_set_results=UTF8");
ต่อท้ายมันนำเด้อ คันจั่งซั่น มันสิบ่เป็นภาษาลาวให้เจ้าเด๊ะ ..
|
|
|
|
|
Date :
2012-06-05 14:58:31 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คันจั่งซั่น = ไม่เช่นนั้น
|
|
|
|
|
Date :
2012-06-05 15:05:09 |
By :
poomloom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นำแน
|
|
|
|
|
Date :
2012-06-05 15:14:17 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอบความคิดเห็นที่ : 7 เขียนโดย : deawx เมื่อวันที่ 2012-06-05 14:58:31
รายละเอียดของการตอบ ::
... โดย.......
อ้าย.deawx code ที่พี่เคียเอาไห้หนูสืกสานะ งงมาก แต่ก็คักหลาย..รอดปานนี้หนูก็ยังงงอยู่
แต่หนูอยากได้ code ต่รงที่จะก็อกข้อมูล วันเวลานะ ละมันมี calender ออกมาไห้เลือกนะ หนูจะเอาส่วนไหนเหรอ
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?php // config.inc.php
$dbserver = 'localhost';
$dbuser = 'root' ;
$dbpass= "root";
$dbname= 'mydatabase';
error_reporting(E_ALL ^ E_NOTICE);
mysql_connect($dbserver, $dbuser, $dbpass) or die("เชื่อมต่อฐานข้อมูลไม่ได้ ");
mysql_select_db($dbname) or die("เลือกฐานข้อมูลไม่ได้"); // เลือกฐานข้อมูล
mysql_query("SET NAMES UTF8");
?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://happylucky.googlecode.com/svn-history/r7/trunk/common/script/jquery.numeric.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/base/jquery-ui.css" type="text/css" />
<script type="text/javascript">
$(function() {
$("#Shortcode").numeric(); //หม่องกำหนดว่าให้ อันนี้ใช้แต่โตเลข
$( "#Effect_time" ).datepicker({ dateFormat: "yy-mm-dd" });
$( "#Expire_time" ).datepicker({ dateFormat: "yy-mm-dd" });
});
</script>
<hr />
<?php
$actions =$_REQUEST['actions'];
if (!isset($actions)) {
$actions = "addform";
}
switch($actions) {
default:
?>
<form action="<?=$PHP_SELF?>?actions=0" method="post" name="addform" id="addform" >
<table border="1" cellpadding="0" cellspacing="1" width="100%">
<tr>
<td class="tbl1" style="white-space: nowrap;"><div align="right">Shortcode : </div></td>
<td class="tbl1" style="white-space: nowrap;"><span class="tbl1" style="white-space: nowrap;">
<input name="Shortcode" type="text" id="Shortcode" value="" size="50" />
</span></td>
</tr>
<tr>
<td class="tbl1" style="white-space: nowrap;"><div align="right">Company : </div></td>
<td class="tbl1" style="white-space: nowrap;"><span class="tbl1" style="white-space: nowrap;">
<input name="Company" type="text" id="Company" value="" size="50" />
</span></td>
</tr>
<tr>
<td class="tbl1" style="white-space: nowrap;"><div align="right"> Effect_time : </div></td>
<td class="tbl1" style="white-space: nowrap;"><span class="tbl1" style="white-space: nowrap;">
<input name="Effect_time" type="text" id="Effect_time" value="" size="50" />
</span></td>
</tr>
<tr>
<td class="tbl1" style="white-space: nowrap;"><div align="right"> Expire_time : </div></td>
<td class="tbl1" style="white-space: nowrap;"><span class="tbl1" style="white-space: nowrap;">
<input name="Expire_time" type="text" id="Expire_time" value="" size="50" />
</span></td>
</tr>
<tr>
<td class="tbl1" style="white-space: nowrap;"><div align="right"> Tel : </div></td>
<td class="tbl1" style="white-space: nowrap;"><span class="tbl1" style="white-space: nowrap;">
<input name="Tel" type="text" id="Tel" value="" size="50" />
</span></td>
</tr>
<tr>
<td class="tbl1" style="white-space:normal;" align=""></td>
<td class="tbl1" style="white-space:normal;" align=""><button type="submit" name="button" id="button" > Add</button>
<button type="reset" name="button" id="button" > Clear</button></td>
</tr>
</table>
</form>
<?php
break;
case "0":
$shortcode = trim($_REQUEST['Shortcode']);
$company = trim($_REQUEST['Company']);
$etime = trim($_REQUEST['Effect_time']);
$exptime = trim($_REQUEST['Expire_time']);
$tel = trim($_REQUEST['Tel']);
$sql = "SELECT Shortcode From shortcode WHERE Shortcode='$shortcode' " ;
$result = mysql_query( $sql);
if (mysql_fetch_array($result)) {
echo"<script>alert('You Add $shortcode Areaddy!');window.location='javascript:history.back()';</script>";
exit();
} else {
$sql = "insert into shortcode set Shortcode='".$shortcode."',Company='".$company."',Effect_time='".$etime."',Expire_time='".$exptime."',Tel='".$tel."' ";
$result = mysql_query($sql);
if (!$result) {
echo("Cant'Add " . mysql_error() );
}
}
echo"<script>window.location='test.php';</script>";
exit();
break;
case "1":
$id = $_REQUEST['id'];
$sql = "SELECT * from shortcode where Short_iD='$id' ";
$result = mysql_query($sql);
$r = mysql_fetch_array($result);
?>
<form action="<?=$PHP_SELF?>?actions=2&id=<?=$id?>" method="post" name="addform" id="addform" >
<table border="1" cellpadding="0" cellspacing="1" width="100%">
<tr>
<td class="tbl1" style="white-space: nowrap;"><div align="right">Shortcode : </div></td>
<td class="tbl1" style="white-space: nowrap;"><span class="tbl1" style="white-space: nowrap;">
<input name="Shortcode" type="text" id="Shortcode" value="<?=$r[Shortcode]?>" size="50" />
</span></td>
</tr>
<tr>
<td class="tbl1" style="white-space: nowrap;"><div align="right">Company : </div></td>
<td class="tbl1" style="white-space: nowrap;"><span class="tbl1" style="white-space: nowrap;">
<input name="Company" type="text" id="Company" value="<?=$r[Company]?>" size="50" />
</span></td>
</tr>
<tr>
<td class="tbl1" style="white-space: nowrap;"><div align="right"> Effect_time : </div></td>
<td class="tbl1" style="white-space: nowrap;"><span class="tbl1" style="white-space: nowrap;">
<input name="Effect_time" type="text" id="Effect_time" value="<?=$r[Effect_time]?>" size="50" />
</span></td>
</tr>
<tr>
<td class="tbl1" style="white-space: nowrap;"><div align="right"> Expire_time : </div></td>
<td class="tbl1" style="white-space: nowrap;"><span class="tbl1" style="white-space: nowrap;">
<input name="Expire_time" type="text" id="Expire_time" value="<?=$r[Expire_time]?>" size="50" />
</span></td>
</tr>
<tr>
<td class="tbl1" style="white-space: nowrap;"><div align="right"> Tel : </div></td>
<td class="tbl1" style="white-space: nowrap;"><span class="tbl1" style="white-space: nowrap;">
<input name="Tel" type="text" id="Tel" value="<?=$r[Tel]?>" size="50" />
</span></td>
</tr>
<tr>
<td class="tbl1" style="white-space:normal;" align=""></td>
<td class="tbl1" style="white-space:normal;" align=""><button type="submit" name="button" id="button" > Edit</button>
<button type="reset" name="button" id="button" > Clear</button></td>
</tr>
</table>
</form>
<?php
break;
case "2":
$id = $_REQUEST['id'];
$shortcode = trim($_REQUEST['Shortcode']);
$company = trim($_REQUEST['Company']);
$etime = trim($_REQUEST['Effect_time']);
$exptime = trim($_REQUEST['Expire_time']);
$tel = trim($_REQUEST['Tel']);
$sql = "UPDATE shortcode set Shortcode='".$shortcode."',Company='".$company."',Effect_time='".$etime."',Expire_time='".$exptime."',Tel='".$tel."' where Short_iD='".$id."'";
$result = mysql_query($sql);
if (!$result) {
echo("Cant' EDIT " . mysql_error() );
exit();
}
echo"<script>window.location='test.php';</script>";
exit();
break;
case "3":
$id = $_REQUEST['id'];
$sql = "delete from shortcode where Short_iD=$id ";
$result = mysql_query($sql);
if (!$result) {
echo"<script>alert('Cant' Delete!');window.location='javascript:history.back()';</script>";
exit();
}
echo"<script>window.location='test.php';</script>";
exit();
break;
}
?>
<br />
<?php
$sql="select * from shortcode where ShortcodeName >0 order by Short_iD ";
$result=mysql_query($sql);
$num=mysql_num_rows($result);
?>
<table border="1" cellpadding="0" cellspacing="1" width="100%">
<tr>
<td width="10%" class="tbl2" style="white-space: nowrap;"><div align="center"><strong>No</strong></div></td>
<td width="20%" class="tbl2" style="white-space: nowrap;"><strong>Shortcode;</strong></td>
<td width="30%" class="tbl2" style="white-space: nowrap;"><strong>Companny</strong></td>
<td width="10%" class="tbl2" style="white-space: nowrap;"><strong>Effect_time</strong></td>
<td width="10%" class="tbl2" style="white-space: nowrap;"><strong>Expire_time</strong></td>
<td width="10%" class="tbl2" style="white-space: nowrap;"><strong>Tel</strong></td>
<td width="10%" class="tbl2" style="white-space: nowrap;"><div align="center"><strong>control</strong></div></td>
</tr>
<?php
for( $i = 0; $i < $r = mysql_fetch_array($result); $i++){
$id=$r[Short_iD];
?>
<tr>
<td style="white-space: nowrap;" align="center" ><?=$id?></td>
<td style="white-space: nowrap;"><?=$r[Shortcode]?></td>
<td style="white-space: nowrap;"><?=$r[Company]?></td>
<td style="white-space: nowrap;"><?=$r[Effect_time]?></td>
<td style="white-space: nowrap;"><?=$r[Expire_time]?></td>
<td style="white-space: nowrap;"><?=$r[Tel]?></td>
<td style="white-space: nowrap;" align="center"><a href="<?=$PHP_SELF?>?actions=1&id=<?=$id?>">Edit</a> <a href="<?=$PHP_SELF?>?actions=3&id=<?=$id?>&id=<?=$id?>" >delete</a></td>
</tr>
<? } ?>
</table>
</body>
</html>
|
|
|
|
|
Date :
2012-06-05 16:35:43 |
By :
Cat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|