Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've probably been wording the question wrong but how, how do I create a simple post system in HTML/PHP, I just need one where people can post something, and then other users can view the post from their homepage also.

share|improve this question
6  
Please read some php+mysql tutorial and come back with specific issue – LearneR Jan 2 at 9:22
2  
Make a form, do some logic, store to database, display, repeat. Or you can just do what @LearneR said. – Josh Brody Jan 2 at 9:22
1  
As your Question looks like a beginner's question, you might want to consider using an existing post system that is maintained by a experienced author, in order to avoid security issues that WILL come with home-brewed systems. – Lukx Jan 2 at 9:23
4  
Stackoverflow != TutorialsPoint – Amyth Jan 2 at 9:24
3  
When digging up tutorials, just avoid any written more than three years ago, or that use the mysql_ family of functions. – Charles Jan 2 at 9:25
show 1 more comment

closed as not a real question by Álvaro G. Vicario, Charles, cryptic ツ, j0k, nikoshr Jan 2 at 9:58

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.

1 Answer

up vote 0 down vote accepted

I recommend first be sure you have a MYSQL server or the like. When a person posts, you should have the php(best to do this with ajax so there's no need to redirect) insert the comment into the table, storing the user_id of the one who submitted it. Then those users that are 'friends', or should be able to see it go to the home page, query for the posted thing by the user_id of the ones they can see.

For example, I am user id 1, and have 3 friends with the id's 2, 3, and 4. 2, 3, and 4 all post something, and log out. Now then, later I come online to the site, where the php queries for all the id's of my friends, then queries the table that has the things posted for all entries that have id's equal to the id's of my friends. That will show all of their posts on the page. Any more questions about it?

share|improve this answer

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