我尝试在Dreamweaver中将数据(使用行为选项卡)插入数据库。我也连接了数据库。但是,由于页面无法在实时版本和浏览器中显示,因此无法正常工作。
我也无法检索表中的所有数据,但如果我只选择显示一列,则显示一行。我不太确定是什么问题,我已经被困了几天试图找到解决方案。显示的消息是“发现动态相关文件时发生未知错误”,当我按直播时显示“与服务器的连接已重置”。
也许有人可以给我一些想法是什么问题?我认为它可能与数据库有关,因为我的html和其他PHP页面可以在浏览器中显示。我认为我为测试网站和服务器做了正确的设置,而我正在使用WAMP服务器。
现在这是代码。我真的不写任何东西,我只使用了插入>数据对象>插入记录。
<?php virtual('CAT400/Connections/connectDB.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($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 .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO company (`Company Registration No`, `Company Name`, `Contact No`, Address) VALUES (%s, %s, %s, %s)",
GetSQLValueString($_POST['Company_Registration_No'], "text"),
GetSQLValueString($_POST['Company_Name'], "text"),
GetSQLValueString($_POST['Contact_No'], "int"),
GetSQLValueString($_POST['Address'], "text"));
mysql_select_db($database_connectDB, $connectDB);
$Result1 = mysql_query($insertSQL, $connectDB) or die(mysql_error());
$insertGoTo = "/CAT400/Certificate Registration.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<p> </p>
<p> </p>
<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
<table align="center">
<tr valign="baseline">
<td nowrap="nowrap" align="right">Company Registration No:</td>
<td><input type="text" name="Company_Registration_No" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Company Name:</td>
<td><input type="text" name="Company_Name" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Contact No:</td>
<td><input type="text" name="Contact_No" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Address:</td>
<td><input type="text" name="Address" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right"> </td>
<td><input type="submit" value="Insert record" /></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1" />
</form>
<p> </p>
</body>
这是写的。