Joost Invitation Request Status

Check out this post for the status of your Joost Invitation Request. People to whom invitation sent. ja****@gmail.com Status: Sent tony*@winwinentertainment.com Status: Sent venu*@gmail.com Status: Sent rmelco*@yahoo.com Status: Sent at150405@gmail.com Status: Sent kapil.vikramadithyan@gmail.com Status: Sent the.pizza.man.amz@gmail.com Status: Sent Dragonsblood2005@gmail.com Status: Sent jacked.r@gmail.com Status: Sent moskod@yahoo.com Status: Sent garyaglman@msn.com Status: Sent…continue reading →

Formating date and time in PHP

PHP5 introduced a new function called date_format to format date and time into the string which was lacking in the earlier version of php. The function require two parameters: one is date object and second is format string. Syntax string date_format ( DateTime $object, string $format ) Unfortunately, PHP4 and…continue reading →

Creating simple percent bar using Java Script function

Create simple percent bar using Java Script function. The function uses plain table and td? to render percent bar on page. The function can be extend to create progress bar. <script> function IndexBar(BarLength, PercnetI, BackColor ) { document.write("<table border='1' width='"+BarLength+"' cellspacing='0' cellpadding='0' bordercolor='#"+BackColor+"' bgcolor='\#"+BackColor+"'>"); document.write ("<tr>"); document.write ("<td width='75\%' bgcolor='\#"+BackColor+"'>");…continue reading →