Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 10-13-2009, 08:29 PM   PM User | #1
SRBuckey5266
New Coder

 
Join Date: Jan 2009
Posts: 45
Thanks: 3
Thanked 0 Times in 0 Posts
SRBuckey5266 is an unknown quantity at this point
Script problem

PLEASE NOTE: Line 42 = the line with: if ($message==) { - I just didn't include my CSS, which would make if ($message==) { 42.

My error:

Parse error: syntax error, unexpected ')' in /home/a5488351/public_html/post.php on line 42

My code:

PHP Code:
<?php

$con 
mysql_connect('''''') or die(mysql_errno());
if (
function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc())
{
    
$_POST array_map('stripslashes'$_POST);
}

$name mysql_real_escape_string($_POST['name']);
$message mysql_real_escape_string($_POST['message']);

if (
$message==) {
    echo 
"<div class='box'><b><span style='color:red'>You didn't enter a message!</span></b></div>";
}
else
{
 
//connect
$connect mysql_connect("","","") or die("Connection failed!");
mysql_select_db("") or die("Database fail!");

//write
$write mysql_query("INSERT INTO posts VALUES ('','$name','$message')") or die(mysql_eror());

echo 
"<div class='box'><font face='arial'><b><span style='color:green'>Posted! Your name was:</span> $name</b> - Your message was....<br><br><b>$message - <a href='index.php'>View it!</a></b>";
}


?>

Last edited by SRBuckey5266; 10-13-2009 at 08:33 PM..
SRBuckey5266 is offline   Reply With Quote
Old 10-13-2009, 08:47 PM   PM User | #2
mlseim
Master Coder

 
mlseim's Avatar
 
Join Date: Jun 2003
Location: Cottage Grove, Minnesota
Posts: 9,055
Thanks: 8
Thanked 1,032 Times in 1,023 Posts
mlseim has a spectacular aura aboutmlseim has a spectacular aura aboutmlseim has a spectacular aura about
Just do this ... (no == )
if ($message) {
mlseim is offline   Reply With Quote
Old 10-13-2009, 08:50 PM   PM User | #3
SRBuckey5266
New Coder

 
Join Date: Jan 2009
Posts: 45
Thanks: 3
Thanked 0 Times in 0 Posts
SRBuckey5266 is an unknown quantity at this point
But now when I enter a message, it still shows that box. See: http://www.chataddict.netau.net - WHY?!
SRBuckey5266 is offline   Reply With Quote
Old 10-13-2009, 08:54 PM   PM User | #4
mlseim
Master Coder

 
mlseim's Avatar
 
Join Date: Jun 2003
Location: Cottage Grove, Minnesota
Posts: 9,055
Thanks: 8
Thanked 1,032 Times in 1,023 Posts
mlseim has a spectacular aura aboutmlseim has a spectacular aura aboutmlseim has a spectacular aura about
Try ...

if(strlen($message) < 1){

EDIT:

or ...

if(!$message){


either one might work.


.
mlseim is offline   Reply With Quote
Old 10-13-2009, 08:57 PM   PM User | #5
SRBuckey5266
New Coder

 
Join Date: Jan 2009
Posts: 45
Thanks: 3
Thanked 0 Times in 0 Posts
SRBuckey5266 is an unknown quantity at this point
Doesn't work.

Edit: Nope, neither work. :/
SRBuckey5266 is offline   Reply With Quote
Old 10-13-2009, 10:06 PM   PM User | #6
mlseim
Master Coder

 
mlseim's Avatar
 
Join Date: Jun 2003
Location: Cottage Grove, Minnesota
Posts: 9,055
Thanks: 8
Thanked 1,032 Times in 1,023 Posts
mlseim has a spectacular aura aboutmlseim has a spectacular aura aboutmlseim has a spectacular aura about
Repost your script, what you currently have now.
mlseim is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 10:02 PM.


Advertisement
Log in to turn off these ads.