清理了SQL/PHP,它没有写.赢得';不要选择CSS


Cleaned up SQL/PHP and it is not writing. Won't pick you CSS

<!DOCTYPE html>
<html lang="en">
<head>
  <!-- Basic Page Needs
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
  <meta charset="utf-8">
  <title>Collecting Data for Database</title>
  <meta name="description" content="">
  <meta name="author" content="AleR">
  <!-- Mobile Specific Metas
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <!-- FONT
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
  <link href="http://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
  <!-- CSS
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
 <link rel="stylesheet" href="normalize.css">
  <link rel="stylesheet" href="skeleton.css">
 <!--    <link rel="stylesheet" href="backbone.css"> -->
<style>
    #container{
        width:90%;
        margin: 40px auto 0 auto;
        
    }    
    h1   {color:lightgreen;}
    
</style>
  
    <style>
body {background-color:lightgreen; color: green;}
h1   {color: lightgreen;}
p    {color: lightgreen;}
        header {
            margin-top: -25px;
            margin-left: -500px;
            height: 100px;
            width: 10000px;
            background-color: green;
        }
        
        nav{background-color: green;    height: 100%;
            width: 100%;}
        aside{background-color: green;    height: 100%;
            width: 100%;}
        
        
</style>
</head>
    <header></header>
    <nav></nav>
    <aside></aside>
<body>
  <!-- Primary Page Layout
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div id="container" align="center">
<form action="final.php" method="post">
  <div class="row">
    <div class="six columns">
      <label for="Age">Category</label>
      <input class="u-full-width" type="text" name="Category">
        
        <label for="Qualifications">Qualifications</label>
      <input class="u-full-width" type="text" name="Qualifications">
        
               <label for="Experience">Experience</label>
      <input class="u-full-width" type="text" name="Experience">
        
        </form>
       
    </div>
    
  </div>
   
  <form action="final.php" method="post">
  <input class="button-primary" type="submit" value="Submit">
</form>
    </div>
  
    
    
	</body>
</html>

在第一个代码集中,我遇到了正在识别的normalize和skelet css页面。除此之外,提交按钮可以工作,但不会写入我的数据库。

PHP到

<!DOCTYPE html>
<html lang="en">
<head>
  <!-- Basic Page Needs
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
  <meta charset="utf-8">
  <title>Audio Search</title>
  <meta name="description" content="">
  <meta name="author" content="AlexR">
  <!-- Mobile Specific Metas
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <!-- FONT
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
  <link href="http://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
  <!-- CSS
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
 <link rel="stylesheet" href="normalize.css">
  <link rel="stylesheet" href="skeleton.css">
  <!--  <link rel="stylesheet" href="backbone.css"> -->
<style>
    #container{
        width:90%;
        margin: 40px auto 0 auto;
        
    }    
    
    background{
        color: green;
    }
    
    
</style>
    
    <style>
body {background-color:lightgreen;}
h1   {color:blue;}
p    {color:green;}
</style>
    
  
</head>
<body>
  <!-- Primary Page Layout
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
    
    <div id="container">
<form>
  <div class="row">
    <div class="six columns">
      <p>Thank you for your name and e-mail.</p>
   
      <?php
        error_reporting(E_ALL);
       DEFINE('DB_USERNAME', '*****');
    DEFINE('DB_PASSWORD', '*****');
    DEFINE('DB_HOST', 'localhost');
    DEFINE('DB_DATABASE', '*****');
       
        
      echo "here!";  
        
        
        
          if (isset($_REQUEST['Experience'])){
              $Age = $_REQUEST['Age'];
              $Qualifications = $_REQUEST['Qualifications'];
              $Experience = $_REQUEST['Experience'];
            
              #echo "Thanks for your submission.";
            $dbc = mysqli_connect(DB_HOST,DB_USERNAME,DB_PASSWORD,DB_DATABASE) OR die ('Could not connect to MySQL: '.mysqli_connect_error());
            $q = "INSERT INTO `FinalForm`(`Age`, `Qualifications`, `Experience`) VALUES ('$Age','$Qualifications','$Experience' )"; 
              $r = mysqli_query($dbc,$q);
              # ^^^ Search submit results window
              if ($r){echo "Results below";} else {echo "Your search found zero results";};
              
}
              
              
          
          
          
          
          
          ?>
      </form>
         </div>
      <div>  
          
      
      
 
    
  
    </div>
	
</html>

不确定为什么PHP没有运行,但代码对我来说似乎很干净。

来自的PHP

<!DOCTYPE html>
<html lang="en">
<head>
  <!-- Basic Page Needs
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
  <meta charset="utf-8">
  <title>Audio Shop Data Retrieval</title>
  <meta name="description" content="">
  <meta name="author" content="AlexR">
  <!-- Mobile Specific Metas
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <!-- FONT
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
  <link href="http://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
  <!-- CSS
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
 <link rel="stylesheet" href="normalize.css">
  <link rel="stylesheet" href="skeleton.css">
  <!--  <link rel="stylesheet" href="backbone.css"> -->
<style>
    #container{
        width:90%;
        margin: 40px auto 0 auto;
        
    }    
    h1   {color:lightgreen;}
    
</style>
  
    <style>
body {background-color:lightgreen; color: green;}
h1   {color: lightgreen;}
p    {color: lightgreen;}
        header {
            margin-top: -25px;
            margin-left: -500px;
            height: 100px;
            width: 10000px;
            background-color: green;
        }
</style>
    
</head>
    <header><h1>Audio Supply Retrieval</h1></header>
<body>
  <!-- Primary Page Layout
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
    
    <div id="container" align="center">
<form>
  <div class="row">
    <div class="six columns">
   
      <?php
        error_reporting(E_ALL);
       DEFINE('DB_USERNAME', 'arr07598');
    DEFINE('DB_PASSWORD', 'Minty!23');
    DEFINE('DB_HOST', 'localhost');
    DEFINE('DB_DATABASE', 'arr07598')
    
            $dbc = mysqli_connect(DB_HOST,DB_USERNAME,DB_PASSWORD,DB_DATABASE) OR die ('Could not connect to MySQL: '.mysqli_connect_error());
            $q = "SELECT * FROM `FinalForm` ORDER BY `Category` ASC";
              $r=@mysqli_query($dbc,$q);
            if ($r) {
                echo '<table><tr><td><b>Age</b></td><td><b>Qualifications</b></td><td><b>Experience</b></td></td>';
                while($row=mysqli_fetch_array($r,MYSQLI_ASSOC)){
                    echo "<tr><td>$row[NameID]</td><td>$row[Age]</td><td>$row[Qualifications]</td><td>$row[Experience]</td></tr>";
                }
       
                echo "</select>";
                };
              echo "<p>";
               
              
          
          ?>
        
      </form>
         </div>
      <div>  
          
      
      
 
    
  
    </div>
	</body>
</html>

您的input类型submit是另一种仅将其作为输入字段的形式。您需要在第一个表单中有一个submit按钮,即您想要提交的按钮