View Single Post
Old 2005-05-12, 05:41 PM   #4
Sams
Rock stars ... is there anything they don't know?
 
Sams's Avatar
 
Join Date: Jun 2004
Location: in your imagination...
Posts: 12
Use ceil() function.
Quote:
float ceil ( float value)

Returns the next highest integer value by rounding up value if necessary. The return value of ceil() is still of type float as the value range of float is usually bigger than that of integer.
$columns=ceil($count_categories_build/7);
Sams is offline   Reply With Quote