Jump to content

Unexpected $end But i seriously cant find the error


scheols

Recommended Posts

[code]
<?php

$newun = $_POST["newun"];
$newpw = $_POST["newpw"];
$newem = $_POST["newem"];
$chkpw = $_POST["chkpw"];'
$checkform = $_POST["addnu"];

//Make a Connection to the Database
mysql_connect("localhost","bulletin","danger84") or die(mysql_error());
mysql_select_db("scheols_bulletinboard") or die(mysql_error());

//Insert Info information into table
mysql_query("INSERT INTO bmembers(uname,upass,email) VALUES("$newun","$newpw","$newem",)");
or die(mysql_error());

if(isset($checkform)){
echo "Thank You $newun For Joining";

}
else    {
echo "Sorry Press Back and Re\'Enter The Form";
}
?>
[/code]

last line

[!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--]Parse error: syntax error, unexpected $end in /home/scheols/public_html/checkregistration.php on line 24[/quote]
Link to comment
Share on other sites

Change this:
mysql_query("INSERT INTO bmembers(uname,upass,email) VALUES("$newun","$newpw","$newem",)");

To:
mysql_query("INSERT INTO bmembers(uname,upass,email) VALUES('$newun','$newpw",'$newem')");

And it should do the trick.

Orio.
Link to comment
Share on other sites

mysql_query("INSERT INTO bmembers(uname,upass,email) VALUES('$newun','$newpw",'$newem')");

error on that line

[!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--]Parse error: syntax error, unexpected T_VARIABLE in /home/scheols/public_html/checkregistration.php on line 14[/quote]
Link to comment
Share on other sites

[!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--]
Parse error: syntax error, unexpected T_VARIABLE in /home/scheols/public_html/checkregistration.php on line 14


same error still same line also :(
[/quote]

heres what i got :(

[code]
<?php

$newun = $_POST["newun"];
$newpw = $_POST["newpw"];
$newem = $_POST["newem"];
$chkpw = $_POST["chkpw"];'
$checkform = $_POST["addnu"];

//Make a Connection to the Database
mysql_connect("localhost","bulletin","danger84") or die(mysql_error());
mysql_select_db("scheols_bulletinboard") or die(mysql_error());

//Insert Info information into table
mysql_query("INSERT INTO bmembers(uname,upass,email) VALUES('$newun','$newpw','$newem')");
or die(mysql_error());

if(isset($checkform)){
echo "Thank You $newun For Joining";

}
else    {
echo "Sorry Press Back and Re\'Enter The Form";
}
?>
[/code]

linke 14

[code]
mysql_query("INSERT INTO bmembers(uname,upass,email) VALUES('$newun','$newpw','$newem')");
[/code]
Link to comment
Share on other sites

[!--quoteo(post=387790:date=Jun 25 2006, 12:09 PM:name=scheols)--][div class=\'quotetop\']QUOTE(scheols @ Jun 25 2006, 12:09 PM) [snapback]387790[/snapback][/div][div class=\'quotemain\'][!--quotec--]
heres what i got :(

[code]
<?php

$newun = $_POST["newun"];
$newpw = $_POST["newpw"];
$newem = $_POST["newem"];
$chkpw = $_POST["chkpw"];'
$checkform = $_POST["addnu"];

//Make a Connection to the Database
mysql_connect("localhost","bulletin","danger84") or die(mysql_error());
mysql_select_db("scheols_bulletinboard") or die(mysql_error());

//Insert Info information into table
mysql_query("INSERT INTO bmembers(uname,upass,email) VALUES('$newun','$newpw','$newem')");
or die(mysql_error());

if(isset($checkform)){
echo "Thank You $newun For Joining";

}
else    {
echo "Sorry Press Back and Re\'Enter The Form";
}
?>
[/code]

linke 14

[code]
mysql_query("INSERT INTO bmembers(uname,upass,email) VALUES('$newun','$newpw','$newem')");
[/code]
[/quote]


Your Error = [code]$chkpw = $_POST["chkpw"];'[/code]

Change that to

[code]$chkpw = $_POST['chkpw'];[/code]
Link to comment
Share on other sites

[!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--]

Warning: mysql_connect(): Access denied for user 'bulletin'@'localhost' (using password: YES) in /home/scheols/public_html/newregistration.php on line 10
Access denied for user 'bulletin'@'localhost' (using password: YES)
[/quote]

did every thing you'all told me i get this new error heres the line:
[code]
mysql_connect("localhost","bulletin","PASSWORD") or die(mysql_error());[/code]
Link to comment
Share on other sites

... or your database name is wrong. With shared webhosting, database names are normally in the form [i]your-username_your-database-name[/i].

The [b]right[/b] information on database name, username, and password is what you wrote down when you created the database and user. You did write it down, didn't you?
Link to comment
Share on other sites

[!--quoteo(post=387801:date=Jun 25 2006, 12:40 PM:name=Crayon Violent)--][div class=\'quotetop\']QUOTE(Crayon Violent @ Jun 25 2006, 12:40 PM) [snapback]387801[/snapback][/div][div class=\'quotemain\'][!--quotec--]
well then your username/pw is probably wrong. or you may have to specify the mysql server name instead of using 'localhost'
[/quote]


so if my database is wrong wtf :(

[code]
<?php

$newun = $_POST["newun"];
$newpw = $_POST["newpw"];
$newem = $_POST["newem"];
$chkpw = $_POST["chkpw"];
$checkform = $_POST["addnu"];

//Make a Connection to the Database
mysql_connect("localhost","bulletin","danger84") or die(mysql_error());
mysql_select_db("scheols_bulletinboard") or die(mysql_error());

//Insert Info information into table
mysql_query("INSERT INTO bmembers(uname,upass,email) VALUES('$newun','$newpw','$newem')")
or die(mysql_error());

if(isset($checkform)){
echo "Thank You $newun For Joining";

}
else    {
echo "Sorry Press Back and Re\'Enter The Form";
}
?>[/code]


WOOT I GOT IT THANKS TO EERY ONE WOOT THANKS :D
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.