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'm new in facebook apps. I have app which uses user's and user's friend's profile picture to make a photo which will be uploaded in the user's wall.I want to create button in my app, by clicking it users can upload photo. Please anyone can help me or give me any advice. Tanks in advance.

share|improve this question

closed as not a real question by Pekka 웃, hjpotter92, Steven Penny, Justin Ethier, Björn Kaiser Feb 25 at 17:00

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

You can use this

<form enctype="multipart/form-data" action=" " method="POST">

Please choose a photo:

<input name="source" type="file">
 <br/>
 <br/>
Say something about this photo:

<input name="message" type="text" value=""><br/><br/>

<input type="submit" value="Upload" class="btn btn-primary"/><br/>

</form>

share|improve this answer

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