Mar 25

Lately I’ve been working on a new web repository, to ease my job I’m using joomla 1.0 as my frame work. at this point the site has partially functional ,however, there still much left to do.

The final goal of this site will be to work as social network repository for sites, such as digg, fark and facebook.

Peace.

Sphere: Related Content

Feb 28

Funny article about 9 signs that tell you to avoid that clueless web designer. My favorite: (sorry Microsoft diehard’s) “He’s a Frontpage expert”.

read more | digg story

Feb 27

Apple has just sent out invitations to press and developers to an event hosting the introduction of the iPhone SDK.

read more | digg story

Aug 25
Sphere: Related Content

May 17

function check_phone($phone)
{
if(!preg_match(”/[^0-9\ ]+$/”,$phone))
{
return TRUE;
}
else
{
return FALSE;
}
}
?>

May 14

function valid_email($email)

{
//check an email address is possibly valid
if(!eregi(”^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$”, $email))

{
return true;
}

else

{
return false;
}
}