Building services like FriendFeed using PHP - Part2

By Hasin Hayder
Following the first installment in this series, here is the second part. In this part I will focus mainly on Bookmarking and News services supported by FriendFeed . Here we go
Supported bookmarking services by FriendFeed
1. Del.icio.us
2. Furl
3. Google shared stuffs
4. Mag.nolia
5. Stumbleupon
Except google shared stufss, all of the rests require just an username […]

Building services like FriendFeed using PHP - Part 1

By Hasin Hayder
Friendfeed is an excellent life streaming service aggregating all your feeds from different service providers, compile them together, build a social network among your known people and finally deliver all these feeds as a mashup. As a result you can immediately track activities of your friends on all the different service they use […]

PHP Login script tutorial

Overview
In this tutorial create 3 files
1. main_login.php
2. checklogin.php
3. login_success.php
Step
1. Create table “members” in database “test”.
2. Create file main_login.php.
3. Create file checklogin.php.
4. Create file login_success.php.
5. Create file logout.php

Code Snippet: Date converter

Snippet: Date converter
Description:
This tiny piece of code takes care that you can display a standard date instead of the mysql date (2005-02-23)
Example:
echo date(”d m Y”, “2005-02-23″);
Shows:
23 02 2005
Code:
PHP:

Snippet: Are sessions working?

Description:
You can use this piece of code to check if it is possible to use sessions for the visitor.
This can come handy for login pages. If you have cookies disabled and try to login, no login session can be used. In such cases it is nice to inform […]

Code Snippets: Calculate Age

Snippet: Calculate age
Description:
With this function you can calculate the age of a person
Example:
echo “Age is: ” . birthday (”1984-07-05″);
Result will be (23 Feb 2005) = “Age is: 20″
Code:
PHP:

<?php
//calculate years of age (input string: YYYY-MM-DD)
function birthday ($birthday){
list($year,$month,$day) = explode(“-”,$birthday);
$year_diff  = date(“Y”) - $year;
$month_diff = date(“m”) - $month;
$day_diff   = date(“d”) - $day;
if […]

MJGUEST is a free professional guestbook using php mySQL

MJGUEST is a free professional guestbook, designed as hi-end solution for both personal homepages and corporate websites.
Thanks to a constant focus on research and innovation, every feature is pushed to the limit, day after day, to provide one of the most powerful and reliable […]

An attractive CSS based guestbook script using MySQL database

Micro guestbook is a MySQL based guestbook script with a CSS based attractive interface. It can store the name, date, message, location, web and email information of the visitor.
You can download it from the download section.
Screenshots:

Another Cool Free CMS: AIOCP

Version 1.3.018
www.tecnick.com Front Page
Admin Login
Username- admin
Password- 1234
Things you should know:

The demo of this system is a default installation.
Some admin features may have been disabled for security reasons.
The entire system is deleted and reinstalled every two hours.

We encourage you to take advantage of opensourceCMS and be the administrator of this software system. Add, create, […]

Free PHP Content Management System (CMS) : 1024

What is 1024?
1024 is a PHP, MySQL based Content Management System. 1024 is one of a few CMS’s leading the way with the implementation of the AJAX technology into all its areas. This includes dynamic adminstration and user interaction. 1024 offers you to ability to set up your own […]