You Are Here: Home »   Code Saturday March 13th 2010

Code Library - php

Explode - (1866 views)


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