2012-06-27 48 views
0

我是PHP/mysql编程的noob,我有这种形式的工作,但是当我有一台新电脑时,它将无法工作。 HTML是一种将结果发送到php页面并将其踢入WAMP mysql数据库的表单。就像我说过的,我把这一切都做得很好,我得到了一台新机器,重新安装了WAMP,复制了数据库和信息,现在它只给我提供了一些信息,如果我添加了模块(mysql_error()), 。$ SQL - (“SELECT .....像从前那样,它给了我一个无法连接错误索引和变量错误

<?php 
$q=$_GET["q"]; 

$con = mysql_connect("localhost","root","password"); 

if (!$con) 
{ 
    die('Could not connect: ' . mysql_error()); 
} 

mysql_select_db("kalen_qc", $con); 

$sql = ("SELECT `id` FROM `users` WHERE `username` = ' " . $root . " ' and `password` = ' " . $password . " ' limit 1"); 

//Retrieve data from the sql Query String 
$cname = $_GET["cname"]; 
$job = $_GET["job"]; 
$apptype = $_GET["apptype"]; 
$priority = $_GET["priority"]; 
$daterec = $_GET["daterec"]; 
$datereq = $_GET["datereq"]; 
$po = $_GET["po"]; 
$authby = $_GET["authby"]; 
$phone = $_GET["phone"]; 
$fax = $_GET["fax"]; 
$motorplantnumber = $_GET["motorplantnumber"]; 
$quoted = $_GET["quoted"]; 
$incomphoto = $_GET["incomphoto"]; 
$repvalue = $_GET["repvalue"]; 
$eyebolt = $_GET["eyebolt"]; 
$motorassem = $_GET["motorassem"]; 
$conduitbox = $_GET["conduitbox"]; 
$conboxpos = $_GET["conboxpos"]; 
$coupler = $_GET["coupler"]; 
$couplexten = $_GET["couplexten"]; 
$couplrecess = $_GET["couplrecess"]; 
$couplflush = $_GET["couplflush"]; 
$motorweight = $_GET["motorweight"]; 
$motorfreq = $_GET["motorfreq"]; 
$application = $_GET["application"]; 
$appdesc = $_GET["appdesc"]; 
$specinstruc = $_GET["specinstruc"]; 
$reasonserv = $_GET["reasonserv"]; 
$obviousdamage = $_GET["obviousdamage"]; 
$cussupplyprod = $_GET["cussupplyprod"]; 

// Escape User Input to help prevent SQL Injection 
$cname = mysql_real_escape_string($cname); 
$job = mysql_real_escape_string($job); 
$apptype = mysql_real_escape_string($apptype); 
$priority = mysql_real_escape_string($priority); 
$daterec = mysql_real_escape_string($daterec); 
$datereq = mysql_real_escape_string($datereq); 
$po = mysql_real_escape_string($po); 
$authby = mysql_real_escape_string($authby); 
$phone = mysql_real_escape_string($phone); 
$fax = mysql_real_escape_string($fax); 
$motorplantnumber = mysql_real_escape_string($motorplantnumber); 
$incomphoto = mysql_real_escape_string($incomphoto); 
$repvalue = mysql_real_escape_string($repvalue); 
$motorassem = mysql_real_escape_string($motorassem); 
$conduitbox = mysql_real_escape_string($conduitbox); 
$conboxpos = mysql_real_escape_string($conboxpos); 
$coupler = mysql_real_escape_string($coupler); 
$couplexten = mysql_real_escape_string($couplexten); 
$couplrecess = mysql_real_escape_string($couplrecess); 
$couplflush = mysql_real_escape_string($couplflush); 
$motorweight = mysql_real_escape_string($motorweight); 
$motorfreq = mysql_real_escape_string($motorfreq); 
$application = mysql_real_escape_string($application); 
$appdesc = mysql_real_escape_string($appdesc); 
$specinstruc = mysql_real_escape_string($specinstruc); 
$reasonserv = mysql_real_escape_string($reasonserv); 
$obviousdamage = mysql_real_escape_string($obviousdamage); 
$cussupplyprod = mysql_real_escape_string($cussupplyprod); 




$sql="INSERT INTO motor_checkin (cname, job, apptype, priority, daterec, datereq, po, authby, phone, fax, motorplantnumber, quoted, incomphoto, repvalue, eyebolt, motorassem, conduitbox, conboxpos, coupler, couplexten, couplrecess, couplflush, motorweight, motorfreq, application, appdesc, specinstruc, reasonserv, obviousdamage, cussupplyprod) 
VALUES 
('$_GET[cname]','$_GET[job]','$_GET[apptype]','$_GET[priority]','$_GET[daterec]', '$_GET[datereq]','$_GET[po]','$_GET[authby]','$_GET[phone]','$_GET[fax]','$_GET[motorplantnumber]', '$_GET[quoted]','$_GET[incomphoto]','$_GET[repvalue]','$_GET[eyebolt]','$_GET[motorassem]','$_GET[conduitbox]','$_GET[conboxpos]','$_GET[coupler]','$_GET[couplexten]','$_GET[couplrecess]', '$_GET[couplflush]','$_GET[motorweight]','$_GET[motorfreq]','$_GET[application]','$_GET[appdesc]', '$_GET[specinstruc]','$_GET[reasonserv]','$_GET[obviousdamage]','$_GET[cussupplyprod]')"; 



if (!mysql_query($sql,$con)); 
    { 
    die('Error: ' . mysql_error()); 
    } 
header("Location: /"); 

mysql_close($con); 
?> 

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

<html> 
<head> 
    <META http-equiv="Content-Typetext/html; charset=iso-8859-1"> 
<title>Kalen Electric Repair Packet</title> 
<link rel="stylesheet" type="text/css" href="qcstyle.css" /> 
<link rel="icon" href="images/favicon.ico" /> 
<!-- This conditional is for IE8 and IE6 and earlier- 8 needs that display:table  --> 
<!--[if !IE 7]> 
<style type="text/css"> 
    #wrap {display:table;height:100%} 
</style> 
<![endif]--> 
<script type="text/javascript"> 
    function showUser(str) 
     { 
      if (str=="") 
       { 
        document.getElementById("txtHint").innerHTML=""; 
        return; 
       } 
      if (window.XMLHttpRequest) 
       {// code for IE7+, Firefox, Chrome, Opera, Safari 
        xmlhttp=new XMLHttpRequest(); 
       } 
      else 
       {// code for IE6, IE5 
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); 
       } 
        xmlhttp.onreadystatechange=function() 
       { 
      if 
        (xmlhttp.readyState==4 && xmlhttp.status==200) 
       { 
        document.getElementById("txtHint").innerHTML=xmlhttp.responseText; 
       } 
       } 
        xmlhttp.open("GET","insert.php?q="+str,true); 
        xmlhttp.send(); 
       } 
    function loadXMLDoc() 
     { 

     } 
</script> 
</head> 
<body> 
<div id="wrap"> <!-- This wrap div needs to encompass everything except the footer div at bottom --> 

<div id="header"> 
     <div id="logo"> <!-- this extra div is just centering the fixed width area of the header content --> 

      <a href="../index.html"><img src="images/logo.png" alt="Kalen Electric and Machinery Inc Quality Control" class="logo"/></a> 


     </div> 
    </div> 

    <div id="main"> 

    <!-- Inside this main div we are floating the content to the left and the sidebar to the right --> 

     <div id="content"> 

      <h1>Motor Check&#45;In&#58;</h1> 
      <form action="insert.php" method="post" id="horizontalForm"> 
       <div class="box"> 
        <fieldset> 
         <label> 
          <span>Customer&#58;</span> 
         <select class="cname" name="cname"><option value="">Select One</option> <option value="GP Wauna">GP Wauna</option> <option value="GP Toledo">GP Toledo</option> <option value="GP Camas">Gp Camas</option></select> 
         </label> 
         <label> 
         <span>Job Number&#58;</span> 
          <input class="job" type="integer" name="job" onClick="this.value=''"/> 
         </label> 
         <label> 
          <button type="button" onclick="loadXMLDoc()">New Job</button> 
         </label> 
        </fieldset> 
        <fieldset> 
         <label> 
           <span>Apparatus Type&#58 </span> 
          <select class="apptype" name="apptype"> <option value="AC Motor">AC Motor</option> <option value="AC Motor 1ph">AC Motor 1ph</option> <option value="AC Motor/Gearhead">AC Motor/Gearhead</option> 
           <option value="AC Welder">AC Welder</option> <option value="AC Submersible">AC Submersible</option> <option value="Stator Only">Stator Only</option> 
           <option value="Service Call">Service Call</option> <option value="AC Generator">AC Generator</option></select> 
         </label> 
         <label> 
         <span>Priority&#58;</span> 
         <select class="priority" name="priority"> <option value="P1">P1</option> <option value="P2">P2</option> <option value="P3">P3</option></select> 
        </label> 
       </fieldset> 
       <fieldset> 
        <label> 
         <span>Date Received&#58;</span> 
         <input class="daterec" type="date" size="12" maxlength="10" name="daterec" onClick="this.value=''"/> 
        </label> 
        <label> 
         <span>Date Required&#58;</span> 
         <input class="datereq" type="date" size="12" maxlength="10" name="datereq" onClick="this.value=''"/> 
        </label> 
        <label> 
         <span>PO&#35;&#58;</span> 
         <input class="po" type="text" size="12" maxlength="20" name="po" onClick="this.value=''"/> 
        </label> 
        <label> 
         <span>Authorized By&#58;</span> 
         <input class="authby" type="text" size="12" maxlength="30" name="authby" onClick="this.value=''"/> 
        </label> 
       </fieldset> 
       <fieldset> 
        <label> 
         <span>Phone&#35;&#58;</span> 
         <input class="phone" type="text" size="12" maxlength="12" name="phone" onClick="this.value=''"/> 
        </label> 
        <label> 
         <span>Fax&#35;&#58;</span> 
         <input class="fax" type="text" size="12" maxlength="12" name="fax" onClick="this.value=''"/> 
        </label> 
        <label> 
         <span>Motor Plant&#35;&#58;</span> 
         <input class="motorplantnumber" type="text" size="12" maxlength="20" name="motorplantnumber" onClick="this.value=''"/> 
        </label> 
        <label> 
         <span>Quoted&#58;</span> 
         <select class="quoted" name="quoted"> <option value="No">No</option> <option value="Yes">Yes</option></select> 
        </label> 
       </fieldset> 
       <fieldset> 
        <label>     
         <span>Incoming Photo As Received&#58;</span> 
         <select class="incomphoto" name="incomphoto"> <option value="No">No</option> <option value="Yes">Yes</option></select> 
        </label> 
        <label> 
         <span>Replacement Value&#58;</span> 
         <input class="repvalue" type="text" size="12" maxlength="7" name="repvalue" onClick="this.value=''"/> 
        </label> 
        <label> 
         <span>Eye&#45;Bolt&#58</span> 
         <select class="eyebolt" name="eyebolt"> <option value="Good">Good</option> <option value="Bad">Bad</option> <option value="None">None</option></select> 
        </label> 
       </fieldset> 
       <fieldset> 
        <label> 
         <span>Motor Assembly&#58;</span> 
         <select class="motorassem" name="motorassem"> <option value="F1">F1</option> <option value="F2">F2</option> <option value="Vertical">Vertical</option></select> 
        </label> 
        <label> 
         <span>Conduit Box&#58;</span> 
        <select class="conduitbox" name="conduitbox"> <option value="Full">Full</option> <option value="Half">Half</option> <option value="None">None</option></select> 
        </label> 
        <label> 
         <span>Conduit Box Position&#58;</span> 
         <select class="conboxpos" name="conboxpos"> <option value="3:00">3:00</option> <option value="6:00">6:00</option> <option value="9:00">9:00</option> <option value="12:00">12:00</option> </select> 
        </label> 
       </fieldset> 
       <fieldset> 
        <label>  
         <span>Coupler&#47;Pulley&#58;</span> 
         <select class="coupler" name="coupler"> <option value="Coupler">Coupler</option> <option value="Pulley">Pulley</option> <option value="None">None</option> </select> 
        </label> 
        <label> 
         <span>Extended&#58;</span> 
         <input class="couplexten" type="text" size="12" maxlength="10" name="couplexten" onClick="this.value=''"/> 
        </label> 
        <label> 
         <span>Recessed&#58;</span> 
         <input class="couplerecess" type="text" size="12" maxlength="10" name="couplrecess" onClick="this.value=''"/> 
        </label> 
        <label> 
         <span>Flush&#58;</span> 
         <input class="couplflush" type="text" size="12" maxlength="10" name="couplflush" onClick="this.value=''"/> 
        </label> 
       </fieldset> 
       <fieldset> 
        <label> 
         <span>Motor Weight&#58;</span> 
         <input class="motorweight" type="text" size="12" maxlength="10" name="motorweight" onClick="this.value=''"/> 
        </label> 
        <label> 
         <span>Motor On Frequency Drive&#58;</span> 
         <select class="motorfreq" name="motorfreq"> <option value="Yes">Yes</option> <option value="No">No</option> </select> 
        </label> 
       </fieldset> 
       <fieldset> 
        <label> 
         <span>Application&#58;</span> 
         <select class="application" name="application"> <option value="Direct Coupled">Direct Coupled</option> <option value="Belted">Belted</option> </select> 
        </label> 
        <label> 
         <span>Application Description&#58;</span> 
         <input class="appdesc" type="text" size="12" maxlength="100" name="appdesc" onClick="this.value=''"/> 
        </label> 
       </fieldset> 
       <fieldset> 
        <label> 
         <span>Special Instructions&#58;</span> 
         <input class="specinstruc" type="text" size="12" maxlength="255" name="specinstruc" onClick="this.value=''"/> 
        </label> 
       </fieldset> 
       <fieldset> 
        <label> 
         <span>Reason For Service&#58;</span> 
         <input class="reasonserv" type="text" size="12" maxlength="255" name="reasonserv" onClick="this.value=''"/> 
        </label> 
       </fieldset> 
       <fieldset> 
        <label> 
         <span>Obvious Damaged or Missing Parts&#58;</span> 
         <input class="obviousdamage" type="text" size="12" maxlength="255" name="obviousdamage" onClick="this.value=''"/> 
        </label> 
       </fieldset> 
       <fieldset> 
        <label> 
         <span>Customer Supplied Product&#58;</span> 
         <input class="cussupplyprod" type="text" size="12" maxlength="255" name="cussupplyprod" onClick="this.value=''"/> 
        </label> 
       </fieldset> 
      <label> 
      <input type="submit" /><br /> 
      </label> 
      </div> 
     </form> 
    </div> 
</div> 
</div> <!-- close the wrap div here --> 

<div id="footer"> 
    <div id="foot"> <!-- this extra div is just centering the fixed width area of the footer content --> 
     <div id="left"> 
     <p>Kalen Electric and Machinery Inc.</p> 
    </div> 
    <div id="right"> 
     <p>AC Induction - Version 1.0</p> 
    </div> 
</div> 
</div> 

</body> 
</html> 

错误返回:

(!) Notice: Undefined index: q in C:\wamp\www\insert.php on line 2 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined variable: root in C:\wamp\www\insert.php on line 13 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined variable: sprocket in C:\wamp\www\insert.php on line 13 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: cname in C:\wamp\www\insert.php on line 16 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: job in C:\wamp\www\insert.php on line 17 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: apptype in C:\wamp\www\insert.php on line 18 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: priority in C:\wamp\www\insert.php on line 19 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: daterec in C:\wamp\www\insert.php on line 20 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: datereq in C:\wamp\www\insert.php on line 21 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: po in C:\wamp\www\insert.php on line 22 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: authby in C:\wamp\www\insert.php on line 23 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: phone in C:\wamp\www\insert.php on line 24 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: fax in C:\wamp\www\insert.php on line 25 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: motorplantnumber in C:\wamp\www\insert.php on line 26 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: quoted in C:\wamp\www\insert.php on line 27 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: incomphoto in C:\wamp\www\insert.php on line 28 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: repvalue in C:\wamp\www\insert.php on line 29 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: eyebolt in C:\wamp\www\insert.php on line 30 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: motorassem in C:\wamp\www\insert.php on line 31 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: conduitbox in C:\wamp\www\insert.php on line 32 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: conboxpos in C:\wamp\www\insert.php on line 33 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: coupler in C:\wamp\www\insert.php on line 34 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: couplexten in C:\wamp\www\insert.php on line 35 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: couplrecess in C:\wamp\www\insert.php on line 36 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: couplflush in C:\wamp\www\insert.php on line 37 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: motorweight in C:\wamp\www\insert.php on line 38 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: motorfreq in C:\wamp\www\insert.php on line 39 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: application in C:\wamp\www\insert.php on line 40 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: appdesc in C:\wamp\www\insert.php on line 41 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: specinstruc in C:\wamp\www\insert.php on line 42 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: reasonserv in C:\wamp\www\insert.php on line 43 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: obviousdamage in C:\wamp\www\insert.php on line 44 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: cussupplyprod in C:\wamp\www\insert.php on line 45 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: cname in C:\wamp\www\insert.php on line 85 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: job in C:\wamp\www\insert.php on line 85 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: apptype in C:\wamp\www\insert.php on line 85 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: priority in C:\wamp\www\insert.php on line 85 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: daterec in C:\wamp\www\insert.php on line 85 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: datereq in C:\wamp\www\insert.php on line 86 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: po in C:\wamp\www\insert.php on line 86 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: authby in C:\wamp\www\insert.php on line 86 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: phone in C:\wamp\www\insert.php on line 86 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: fax in C:\wamp\www\insert.php on line 86 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: motorplantnumber in C:\wamp\www\insert.php on line 86 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: quoted in C:\wamp\www\insert.php on line 87 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: incomphoto in C:\wamp\www\insert.php on line 87 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: repvalue in C:\wamp\www\insert.php on line 87 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: eyebolt in C:\wamp\www\insert.php on line 87 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: motorassem in C:\wamp\www\insert.php on line 87 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: conduitbox in C:\wamp\www\insert.php on line 88 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: conboxpos in C:\wamp\www\insert.php on line 88 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: coupler in C:\wamp\www\insert.php on line 88 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: couplexten in C:\wamp\www\insert.php on line 88 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: couplrecess in C:\wamp\www\insert.php on line 88 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: couplflush in C:\wamp\www\insert.php on line 89 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: motorweight in C:\wamp\www\insert.php on line 89 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: motorfreq in C:\wamp\www\insert.php on line 89 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: application in C:\wamp\www\insert.php on line 89 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: appdesc in C:\wamp\www\insert.php on line 89 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: specinstruc in C:\wamp\www\insert.php on line 90 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: reasonserv in C:\wamp\www\insert.php on line 90 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: obviousdamage in C:\wamp\www\insert.php on line 90 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 

(!) Notice: Undefined index: cussupplyprod in C:\wamp\www\insert.php on line 90 
Call Stack 
# Time Memory Function Location 
1 0.0006 744072 {main}() ..\insert.php:0 
+0

你正在使用Wamp?你是否在你的新电脑上重新安装Wamp并正确安装? – javajavajava

+0

所有的错误已经被列出。尝试根除它们 – hjpotter92

+0

[PHP:“注意:未定义的变量”和“注意:未定义的索引”]可能的重复(http://stackoverflow.com/questions/4261133/php-notice-undefined-variable-and- notice-undefined-index) – mario

回答

1

这些都是通知,而不是错误很可能新的PHP安装具有更严格的错误报告级别,并且以前的计算机只是抑制了相同的通知。

这些通知本身意味着表单尚未提交,或者还有一些其他相关问题,为什么表单数据尚未发送。

0

您的变量(“q”,“root”,“sprocket”等)应该来自另一页,因此$ _GET调用。您是否尝试过先运行表单?如果你只是加载这个页面,变量将不会被填充。

4

答案在通知本身。查询字符串中不存在q的条目。

最好建立错误处理和输入验证以确保存在适当的变量。

$q = (isset($_GET['q']) ? $_GET['q'] : null); 

由于您正在设置和引用多个变量,我建议您创建一个函数,您可以传递相应的变量。这不仅检查相应变量的存在,还会转义用于查询的变量。

<?php 
function varExist($var){  
    return (isset($_GET[$var]) ? mysql_real_escape_string($_GET[$var]) : null);  
} 
$q = varExist('q'); 
...  
?> 

请注意,按照documentation

这个扩展的使用气馁。应该使用MySQLi或PDO_MySQL 扩展。另请参阅MySQL:选择API指南和 相关的FAQ以获取更多信息。替代此功能 包括:

■mysqli_real_escape_string()■PDO ::引用()

有关于建议的替代方案,mysqli_real_escape_string()额外的文件,你可以查看。

2

基本上所有的变量都是空的。确保在代码开始时对它们进行初始化。这样你就不会得到未定义的索引警告。

$q = ''; 
$cname = ''; 
...etc 

旁注

这是真的很危险。运行sql时切勿使用$ _Get。用户可以通过这种方式执行SQL注入攻击。

INSERT ... Values ('$_GET[cname]','$_GET[job]' 

很多很多更好的

$cname = mysql_real_escape_string($cname); 
$job = mysql_real_escape_string($job); 
Insert ... Values (' . $cname . ', ' . $job . ' 
+0

对不起,我没有发布HTML页面去。 –

+0

尽管可以在设置变量以避免空值或空值之前对其进行初始化,但我会建议将路由发布到我的解决方案中。这种做法不仅干,而且还使得代码更具可读性和可维护性。 – RobB

+0

我肯定会同意@RobB。您的解决方案要简洁得多,而且我将来会使用它。 –

0

你的情况,这可能是要走的路:在脚本中的第一行设置如下:

// Report all errors except E_NOTICE 
error_reporting(E_ALL^E_NOTICE); 

这根本不会给出这些“错误”消息。这不是一种好的编码方式,但在这种情况下,它是最好的快速解决方案。

+3

我同意这会很快删除邮件,但我发现保持错误报告将有助于防止您在代码逻辑中犯下简单的错误。 –

+0

@JoshFrankel我完全同意你的看法,但他说他不是编码员,只是想让这个东西运行。所以,我认为没关系。 – Sliq