Quote:
Originally Posted by Brujah
You keep resetting $count = 1; at the top of the loop.
change $count = 1; to this
if ( ! isset( $count ) ) $count = 1;
|
Alright I just pulled it back out of the loop and it's working right now. Thanks for all the help guys!