02-03-2005, 11:01
|
|
|
חבר מתאריך: 01.06.04
הודעות: 140
|
|
בעיה קטנה (קוד mysql)
אז ככה בניתי הרשמה רגילה שתגיע לקובץ
insertDB.php
ועכשיו ברגע שזה מגיע לקובץ זה נותן לי שגיאה: "
Parse error: parse error, unexpected '{' in c:\php\www\cats\insertdb.php on line 5 "
קוד הקובץ insertDB.php
קוד PHP:
<?php include ("connect.php"); if ((isset($_POST['ID'])) and (isset($_POST['Email'])) and (isset($_POST['Comment'])) { $user=$_POST['ID']; $pass=$_POST['Email']; $email=$_POST['Comment']; mysql_query("INSERT INTO `users` (`ID`,`Email,`Comment`) VALUES ('$ID','Email','Comment'); ") or die(mysq_error()); echo 'good'; } else echo 'bad, try again'; ?>
נערך לאחרונה ע"י AdxMan בתאריך 02-03-2005 בשעה 11:20.
|