[url=https://dl.dropbox.com/u/46669022/Pride/cap0000.png]0[/url]Shows the link instead of a clickable 0.
Example:
0
as opposed to:
1
(same code)
I guess it has something to do with the character '0' being seen as actual null value?
/** * Attnam Party function */ function attnam_party( $people ) { for( $i = 0; $i < count($people); $i++ ) { echo $people[$i]['name'] . " is here to party\n"; } }