Code to add Facebook search to ur Welcome page

Dr_And

Power Member
Joined
May 28, 2011
Messages
772
Reaction score
106
Hello everyone

This code to add the facebook search to ur welcome page

The code
PHP:
<CENTER>
<!-- Search FB -->
<FORM method=GET action="http://www.facebook.com/search">
<TABLE bgcolor="#FFFFFF"><tr><td>
<A HREF="http://www.facebook.com/">
<IMG SRC="http://profile.ak.fbcdn.net/hprofile-ak-snc4/hs624.snc3/27535_20531316728_5553_q.jpg" border="0"
ALT="Google" align="absmiddle"></A>
<INPUT TYPE=text name=q size=31 maxlength=255 value="">
<INPUT TYPE=hidden name=hl value=it>
<INPUT type=submit name=btnG VALUE="Search In FaceBook">
</td></tr></TABLE>
</FORM>
<!-- Search FB -->
</CENTER>


Regards,
 
You can do this without redirecting the user to FB :)
Create an FB application, call the URL in code with an access token, and you'll get the results in Json file ;)

Code:
https://graph.facebook.com/search?q=QUERY_STRING&type=user&access_token=ACCESS_TOKEN_HERE
 
You can do this without redirecting the user to FB :)
Create an FB application, call the URL in code with an access token, and you'll get the results in Json file ;)

Code:
https://graph.facebook.com/search?q=QUERY_STRING&type=user&access_token=ACCESS_TOKEN_HERE

Thanks for the add ;)
 
Back
Top