Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I create wallpaper is similiar facebook wallpaper that can post and comment at the same page. Something wrong with the comment query insert into mysql database.

share|improve this question
you should also check $_SESSION['userid'] ... you may heard of session hijacking – NullPoiиteя Dec 8 '12 at 6:57
Please, don't use mysql_* functions in new code. They are no longer maintained and the deprecation process has begun on it. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial. – NullPoiиteя Dec 8 '12 at 7:00
you are not escaping post properly every post ,session ,get must be checked ... your code is open for sql injection – NullPoiиteя Dec 8 '12 at 7:04

closed as not a real question by Charles, Michael Berkowski, Dante is not a Geek, home, Explosion Pills Dec 8 '12 at 18:40

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

Check if there are any errors on your first query:

$join_query = ("SELECT login_id, date, comment, post_message FROM posts p JOIN comments c ON p.post_id=c.post_id WHERE loin_id='".$_SESSION['userid']."'") or die(mysql_error());

Change:

loin_id='".$_SESSION['userid']."'

To:

c.login_id='".$_SESSION['userid']."'

You also want to change

if (isset($_POST['submit2']))

To:

if (isset($_POST['submit']))
share|improve this answer
they are correct. I think something wrong with the form and query. Please review the query and form that you may find out something on there because you are pro. Thank you so much – user1793673 Dec 8 '12 at 6:59
Check my edit. Your $_POST['submit'] was wrong. – SeanWM Dec 8 '12 at 7:09

Change:

if (isset($_POST['submit2']))

To:

if (isset($_POST['submit']))
share|improve this answer
you might want to add this in previous answer ... – NullPoiиteя Dec 8 '12 at 7:07
sorry i copied and pasted on here and forgot to change it but the post_id is not right. it is something wrong with this field here <input type="hidden" name="post_id" value="<?php echo $picture_id; ?>"> if i don't add this field, the post_id is zero. i already scratch my head more than a month. please help. thank you so much – user1793673 Dec 8 '12 at 7:11
Is $picture_id defined? What is the value of it? – SeanWM Dec 8 '12 at 7:12
sorry, i made a mistake here. I already changed it from my side when i comment on post. the query didn't insert into database. what is wrong with? – user1793673 Dec 8 '12 at 7:29

what the problem is that you are checking that $_POST['submit2'] is set but in your form its $_POST['submit']

so it should be if (isset($_POST['submit']))

Note/Warning

  1. your code is open for sql injection you must check all POST,GET,SESSION
  2. use of MySQL_* function are deprecated so use either MySQLi or PDO
share|improve this answer
$query = "
 INSERT INTO
    comments
 SET
    comment_id = 0,
    login_id = '".$_SESSION['userid']."',
    post_id = '".$post_id."',
    date = '".$post_id."',
    comment = '".$comment."'";

 //print "<BR>".$query; //Remove Comments From This Line To Debug.

mysql_query($query, $link) or die("Cannot Update Comments Table".mysql_error());

Hope This Helps.

This Is Also A Cleaner Way Of Doing Your Queries. You Will Thank Yourself 100 Times Over If You Follow This.

Still One Thing I Would Change Is To Remove:

or die("Cannot Update Comments Table".mysql_error());

And Replace It With:

or trigger_error("Cannot Update Comments Table (".mysql_error().")", E_USER_ERROR);
share|improve this answer
i already changed the query and copied your query but i tried it, the post_id is zero again. freaking hard to get post_id right. do you have anymore idea how to get post_id right? thank you – user1793673 Dec 8 '12 at 7:46

Not the answer you're looking for? Browse other questions tagged or ask your own question.