0

フィールドに入力して「登録」を押した後、データベースはまったく影響を受けません。私のHTMLコード:

<div id="register_details"><?php require_once('functions/reg.php');?>
<form action="" method="post" id="loginForm">
<table cellpadding="2" cellspacing="0" border="0">
<tr>
<td>Email ID&#42; &#58; &nbsp;</td>
<td><input class="input" type="text" name="email" /></td>
</tr>
<tr>
<td>Password&#42; &#58; &nbsp;</td>
<td><input class="input" type="password" name="password" /></td>
</tr>
<tr>
<td colspan="2" align="right"><input class="button" type="submit" name="submit" value="Register" /></td>
</tr>
</table>
</form>
</div>              

これは私のphpファイルです:

<?php
require_once 'sys.class.php';
$reg = new Registration;
$reg->SetEmail($_POST['email']);
$reg->SetPassword($_POST['password']);
$error = $reg->InsertUserToSql(); // see notes at the class

if(!empty($error['2']))
{
echo $error['2'];
}
?>

エラーはこれら2つだけです。私のsys.class.phpファイルは大丈夫です。

4

1 に答える 1