You Are Here: Home »   Code Tuesday January 6th 2009

Code Library - php

Explode - (1736 views)


<?php
$email 
"user@server.com";
$email explode("@"$email);
print 
"Your Using the Server: $email[1] with the username: $email[0]";
?>