You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to php-email-address-validation
Any tips for implementing the email address validation class? My php
output blanks out whenever I try to initialize the class...
<?php
include("EmailAddressValidator.php");
$validator = new EmailAddressValidator;
// errors out here, no output. Removal of class declaration enables
output...
?>
James
unread,
Oct 19, 2008, 8:52:38 AM10/19/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to php-email-address-validation
To get this working, I simply removed all class functionality, all the
public and private function declarations and put those functions at
the top of my file.