You Are Here: Home »   Code Friday September 3rd 2010

Code Library - php

Explode - (1934 views)


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