-2

我添加了动作值注册文件

  <body>

<div id="registration">
 <h2><b><i>Electronic Montessori Learning</i><b></h2>

 <form id="RegisterUserForm" action="connect.php" method="post">
    <fieldset>
         <p>
            <label for="name">Name</label>
            <input id="name" name="name" type="text" class="text" value="" />
         </p>
        <p>
            <label for="password">Password</label>
            <input id="password" name="password" class="text" type="password" />
         </p>
       <p>
            <button id="registerNew" name="registerNew" type="submit">Register</button>
         </p>
    </fieldset>

 </form>
</div>
<body>

我没有发布所有registration.html代码,因为它工作正常

连接.php

<?php


$db=mysql_connect("localhost", "root", "") or die(mysql_error());
echo "Connected to MySQL<br />";
mysql_select_db("users") or die(mysql_error());
echo "Connected to Database";

$name ='';
$password ='';
if(isset($_POST['registerNew'])){
// Storing form values into PHP variables
$name = $_POST['name']; // Since method=”post” in the form
$password = $_POST['password'];

}


mysql_query("INSERT INTO user_eml(Name, Password) VALUES('$name', '$password' ) ") 
or die(mysql_error());  
echo "Data Inserted!";

echo    'Thank you for submitting your details!';

?> 

但它仍然无法正常工作,当我按下注册按钮时,它显示了 connect.php 的 php 代码

4

6 回答 6

6

您的表单不知道将其数据发送到何处:

<form id="RegisterUserForm" action="" method="post">

应该

<form id="RegisterUserForm" action="connect.php" method="post">
于 2013-04-17T12:52:58.757 回答
1

如果单击注册按钮时,页面上出现 php 代码,那么很可能它与您的代码无关。请检查您是否直接双击 html 文件进行测试。请改为在浏览器中输入 localhost 页面地址来执行它。

例如:http://localhost/registration.html

现在 HTML 应该能够执行 PHP 代码了。

-Shazz解码器

于 2015-09-16T04:39:12.577 回答
0

您必须在表单中添加connect.phpaction属性值:

<form id="RegisterUserForm" action="connect.php" method="post">
于 2013-04-17T12:53:53.677 回答
0

action=""您的表单中,没有任何内容被提交。你需要告诉它调用connect.php

于 2013-04-17T12:54:49.150 回答
0

如果你使用与action相同的页面,你应该将action.php中的代码复制到包含form的页面上,或者将action=""替换为action="connect.php"

于 2013-04-17T12:57:05.540 回答
0

如果单击注册按钮时,页面上出现 php 代码,那么很可能它与您的代码无关。请检查您是否直接双击 html 文件进行测试。请改为在浏览器中输入 localhost 页面地址来执行它。

例如:http://localhost/registration.html

现在 HTML 应该能够执行 PHP 代码了。并且您的包含 html 和 php 文件的文件夹应该在 XAMPP->htdocs 中。

于 2019-12-07T14:28:48.643 回答