
Sep 12th, 2007, 04:37
|
 |
SuperMember
|
|
Join Date: Apr 2007
Location: Willich, Germany
Age: 20
Posts: 593
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
|
Re: ACCESS HELP, trying to count groups
well, if you're using PHP you could use the explode function:
- PHP: Select all
<?php foreach($rows as $row) { $parts=explode('Y',$row); // now $parts[0] holds the first number // and $parts[1] holds the second number // and if $parts is empty (count($parts)==0), then there was only one number ?>
|