Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~542 People Reached
Favorite Forums
Favorite Tags
php x 13

5 Posted Topics

Member Avatar for harrence

Hi all Mamp is not processing my php files, anyone know why this might be? Very general question I know, I've tried most of the usual suspects; preferences etc....

0
53
Member Avatar for Andrew F.

Hi or you could have a go at this one [code] <?php function spamcheck($field){ if (eregi("to:",$field) || eregi("cc:",$field)) { return TRUE; }else{ return FALSE; } } if (isset($_REQUEST['email'])) { $mailcheck = spamcheck($_REQUEST['email']); if ($mailcheck==TRUE){ echo "Invalid input."; }else{ $name = $_REQUEST['name']; $email = $_REQUEST['email']; $subject = $_REQUEST['subject']; $message = $_REQUEST['message']; …

Member Avatar for Andrew F.
0
196
Member Avatar for a4tech
Member Avatar for harrence

Hi all, I'm currently working on having 'artist_id' counted once only between two dates although they may have visited several times over that period. The following code works very well for counting the total number of visits. Any suggestions out there? Regards harrence [code] $sql = "SELECT * FROM artists_details …

Member Avatar for harrence
0
91
Member Avatar for harrence

Hi, my first post. I'm trying to gather attendance records between two dates the user selects. I have two tables 'attendance' and 'artists_details' which I'm hoping I've successfully joined. The field I'm working on is just above the commented one 'ethnicity=maori'. I get no errors, however whatever dates I choose …

Member Avatar for harrence
0
98

The End.