You are hereitimes
itimes
Mysql database dump
For dumping a mysql database we can use mysqldump utility comes with mysql. Go to mysql bin directory and try:
mysqldump dbname -u username -p password > path/to/file
# backup of a table in database
mysqldump dbname tablename -u username -p password > /path/to/file
and for loading same database on another server , login into mysql and run following queries
create dbname;
use dbname;
source path/to/file;
itimes.com releases
After a long period of development itimes.com releases in first week of april 2008.
I am woking on this project from last one year. While i start on working this project it is just a social network with basic features. But as time passes the requirement changes day by day. Only new feature is that you can have email in social network.