How to Tag in your FB post and status
Jan 8th
One of the most popular features on Facebook is tagging, which gives you the ability to identify and reference people in photos, videos and notes. Today, we are adding a new way to tag people and other things you’re connected to on Facebook — in status updates and other posts from the Publisher. It’s another way to let people know who and what you’re talking about.
People often update their status to reflect their thoughts and feelings, or to mention things they feel like sharing. Sometimes that includes referencing friends, groups or even events they are attending — for instance, posting “Grabbing lunch with Meredith Chin” or “I’m heading to Starbucks Coffee Company — anyone want some coffee?”.
Now, when you are writing a status update and want to add a friend’s name to something you are posting, just include the “@” symbol beforehand. As you type the name of what you would like to reference, a drop-down menu will appear that allows you to choose from your list of friends and other connections, including groups, events, applications and Pages. Soon, you’ll be able to tag friends from applications as well. The “@” symbol will not be displayed in the published status update or post after you’ve added your tags.

Friends you tag in your status updates will receive a notification and a Wall post linking them to your post. They also will have the option to remove tags of themselves from your posts. We hope that tagging your status updates and others posts from the Publisher will enable you to share in a more meaningful and engaging way, and connect with even more people. We’re rolling this feature out over the course of the next few weeks, so you may not see the new feature just yet.
Display Images from mySQL Binary Data
Nov 10th
First of all we must connect to our database
<?php
$username = "";
$password = "";
$host = "localhost";
$database = "";
Storing Images/Binary Files to mySQL in PHP
Nov 10th
It is possible for us to store/save our images (binary files) into a mySQL database in PHP. In this article, we will discuss about “how to store images, audio, or another binary files into mySQL database with PHP script”. But, before we continue to the further step, you might want to consider some reason of why we should and why we shouldn’t store binary files in a database:
Reasons to store your images (binary files) in a database:
- Storing in a database allows better security for your files and images.
- Eliminates messy directory and file structures (this is especially true when users are allow to contribute files).
- Files/Images can be stored directly linking to user or advertiser information. Read the rest of this entry »