โคีดการติดต่อฐานข้อมูลในวินโดร์ vista ขอความช่วยเหลือเรื่องการติดต่อฐานข้อมูลในวินโดร์วิชตร้าหน่อยคะเพราะพอ เปลี่ยนมาใช้วินโดร์วิชตร้าก้อไม่สามารถติดต่อฐานข้อมูลได้เลยคะ
ลอง restart apache แล้วลองเข้า phpmyadmin ดูครับ
ว่า service ของ mysql ผ่านไม๊ ใส่ พาส ใส่ user ให้ถูกต้องก็น่าจะได้
เพราะโค๊ดมันเหมือนกัน ไม่เกี่ยวกะ OS น่ะครับ ผมก็ใช้ vista
Date :
2009-06-30 09:26:35
By :
deawx
ตอนนี้สามารถเข้าไปสร้างฐานข้อมูลได้ตามปกติคะแต่เมื่อสร้างฟอร์มในดรีมแล้วลองเขียนโค๊ดติดต่อฐานข้อมูลเพื่อที่จะดึงข้อมูลจากฐานและเอาข้อมูลลงฐาน มันติดต่อไม่ได้คะ ระบบมันฟ้องว่า no database คะ ช่วยหน่อยนะคะ
Date :
2009-06-30 09:56:33
By :
preapo
ผมก้อใช้วิสต้าอยู่นะครับก้อติดต่อได้ปกตินะครับ
ลองเช็คตัว connect กับ database ดีๆครับ
Date :
2009-06-30 10:03:17
By :
versaa
หรือ ไม่อย่างนั้นคุณ preapo ก็เอา Code การติดต่อกับ Database มาโพสดู
Date :
2009-06-30 10:27:42
By :
panyapol
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "index2" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_adduser"])) && ($_POST["MM_adduser"] == "insertok")) {
$insertSQL = sprintf("INSERT INTOpersonal(user_id, username, p_pos, passw) VALUES ($user_id, $username, $p_pos, $passw)",
GetSQLValueString($_POST['บุคคลากร'], "text"),
GetSQLValueString($_POST['ชื่อ'], "text"),
GetSQLValueString($_POST['manu1'], "text"),
GetSQLValueString($_POST['รหัส'], "text"));
mysql_select_db($database_dbconn, $dbconn);
$Result1 = mysql_query($insertSQL, $dbconn) or die(mysql_error());
$insertGoTo = "insertok.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location:%s", $insertGoTo));
}
if ((isset($_POST["MM_adduser"])) && ($_POST["MM_adduser"] == "form1")) {
$insertSQL = sprintf("INSERT INTO personal (user_id) VALUES (user_id)",
GetSQLValueString($_POST['บุคคลากร'], "text"));
mysql_select_db($database_dbconn, $dbconn);
$Result1 = mysql_query($insertSQL, $dbconn) or die(mysql_error());
$insertGoTo = "insertok.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
if ((isset($_POST["MM_adduser"])) && ($_POST["MM_adduser"] == "form1")) {
$insertSQL = sprintf("INSERT INTO personal (username) VALUES (usernsme)",
GetSQLValueString($_POST['ชื่อ'], "text"));
mysql_select_db($database_dbconn, $dbconn);
$Result1 = mysql_query($adduserSQL, $dbconn) or die(mysql_error());
$insertGoTo = "insertok.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
if ((isset($_POST["MM_adduser"])) && ($_POST["MM_adduser"] == "form1")) {
$insertSQL = sprintf("INSERT INTO personal (p_pos) VALUES (p_pos)",
GetSQLValueString($_POST['manu1'], "text"));
mysql_select_db($database_dbconn, $dbconn);
$Result1 = mysql_query($adduserSQL, $dbconn) or die(mysql_error());
$insertGoTo = "insertok.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
if ((isset($_POST["MM_adduser"])) && ($_POST["MM_adduser"] == "form1")) {
$insertSQL = sprintf("INSERT INTO personal (passw) VALUES (passw)",
GetSQLValueString($_POST['รหัส'], "text"));
mysql_select_db($database_dbconn, $dbconn);
$Result1 = mysql_query($insertSQL, $dbconn) or die(mysql_error());
$insertGoTo = "insertok.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
mysql_select_db($database_dbconn, $dbconn);
$query_rem = "SELECT * FROM personal ORDER BY user_id ASC";
$rem = mysql_query($query_rem, $dbconn) or die(mysql_error());
$row_rem = mysql_fetch_assoc($rem);
$totalRows_rem = mysql_num_rows($rem);
mysql_select_db($database_dbconn, $dbconn);
$query_rem_1 = "SELECT * FROM personal ORDER BY user_id ASC";
$rem_1 = mysql_query($query_rem_1, $dbconn) or die(mysql_error());
$row_rem_1 = mysql_fetch_assoc($rem_1);
$totalRows_rem_1 = mysql_num_rows($rem_1);
?>
<html>
ขอโทษนะคะโค๊ดเยอะไปหน่อยพอดีมือใหม่คะแต่ขอความกรุณาด้วยนะคะ
Date :
2009-06-30 11:24:48
By :
preapo
Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in C:\AppServ\www\work_report\index2.php on line 110
Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in C:\AppServ\www\work_report\index2.php on line 112
เมื่อทดลองรันแล้วมันก้อแจ้งเออเรอแบบนี้คะ
Date :
2009-06-30 11:26:34
By :
preapo
เท่าที่ดูเห็นมีแต่โค้ด mysql_select_db นี่ครับ ไม่เห็นมีโค้ด mysql_connect เลยนี่ครับ หรือว่าผมหาไม่เจอหว่า
Date :
2009-06-30 14:15:02
By :
zepherus
อยู่ในหน้า insertok นะคะ
Date :
2009-06-30 15:03:18
By :
preapo
หน้านี้คือหน้าอินเสิทโอเคคะ
<html>
<head>
<META http-equiv=Content-Type content="text/html; charset=windows-874">
<title>ระบบรายงานการปฎิบัติงาน</title>
<style type="text/css">
<!--
.style1 {
font-size: 24px;
font-weight: bold;
}
.style3 {font-size: 16px}
-->
</style>
<?
$objConnect = mysql_connect("localhost","root","201320") or die("Error Connect to Database");
$objDB = mysql_select_db("repost");
$strSQL = "INSERT INTO personal ";
$strSQL .="(user_id,pass_id,p_pos,username) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtuser_id"]."','".$_POST["txtpass_id"]."','".$_POST["txtp_pos"]."' ";
$strSQL .=",'".$_POST["txtusername"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
?>
<p align="center"><font size="2" face="Tahoma, MS Sans Serif"><strong>เพิ่มข้อมูลลงฐานข้อมูลแล้ว</strong></font></p>
<p align="center"><font size="2" face="Tahoma, MS Sans Serif"><a href="index2.php">คลิกที่นี่เพื่อไปดู</a></font></p>
</body>
</html>
</head>
Date :
2009-06-30 15:06:15
By :
preapo
ไฟล์ insertok.php
Code (PHP)
<html>
<head>
<META http-equiv=Content-Type content="text/html; charset=windows-874">
<title>ระบบรายงานการปฎิบัติงาน</title>
<style type="text/css">
<!--
.style1 {
font-size: 24px;
font-weight: bold;
}
.style3 {font-size: 16px}
-->
</style>
<?
$objConnect = mysql_connect("localhost","root","201320") or die("Error Connect to Database");
$objDB = mysql_select_db("repost");
$strSQL = "INSERT INTO personal ";
$strSQL .="(user_id,pass_id,p_pos,username) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtuser_id"]."','".$_POST["txtpass_id"]."','".$_POST["txtp_pos"]."' ";
$strSQL .=",'".$_POST["txtusername"]."') ";
$objQuery = mysql_query($strSQL,$objConnect);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
?>
<p align="center"><font size="2" face="Tahoma, MS Sans Serif"><strong>เพิ่มข้อมูลลงฐานข้อมูลแล้ว</strong></font></p>
<p align="center"><font size="2" face="Tahoma, MS Sans Serif"><a href="index2.php">คลิกที่นี่เพื่อไปดู</a></font></p>
</body>
</html>
</head>
****** ลองดูครับ เผื่อได้
Date :
2009-06-30 15:31:09
By :
panyapol
ขอบคุณมากคะแล้วจ้าลองแก้ดูนะคะ
Date :
2009-07-01 10:00:25
By :
preapo
Load balance : Server 04