I got this out the manual:

<?php
$email = '[EMAIL PROTECTED]';
$domain = strstr($email, '@');
print $domain; // prints @example.com
?>
how do I get the "user" ranther than "@example.com"Thanks

Reply via email to