Thursday, December 27, 2007

HTML PHP CSS Web 2.0

HTML PHP CSS Web 2.0

Check it out for more Info:

http://www.cgitop.com

Javascript Amazings

check it out
http://www.c6software.com/Products/PopBox/Default.aspx


Tuesday, December 18, 2007

Mysql encription

SELECT id, usertypeid, username, firstname, lastname, AES_DECRYPT(
PASSWORD , 'xxsxw342xx' )
FROM iplat_user_profile
WHERE username = 'demo123'


xxsxw342xx - > encription key



Monday, December 10, 2007

How to expire the session after particular time in php?

we can  use this method
setcookie("PHPSESSID",$_COOKIE['PHPSESSID'],time()+900);


Thursday, December 6, 2007

Mysql Dump for more table in single query

mysqldump --add-drop-table -h localhost -u root -p databasename accounts countries userdetails >databasedump.sql