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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
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.
|
Check if there are any errors on your first query:
Change:
To:
You also want to change
To:
|
|||||
|
|
Change:
To:
|
|||||||||
|
|
what the problem is that you are checking that so it should be Note/Warning
|
|||
|
|
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:
And Replace It With:
|
|||
|


$_SESSION['userid']... you may heard of session hijacking – NullPoiиteя Dec 8 '12 at 6:57mysql_*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