Hi,
How do I do this does someone know? I made a database with filesize records.
CREATE TABLE `portal_gallery_video` (
`id` int(11) NOT NULL auto_increment,
`size` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `id` (`id`)
) TYPE=MyISAM;
and in the 'size' I insert the size but if I type 1200 it says its 1200kb is there a way if its over 1000 it make it say 1.2mb or 12mb instead of kb all the time?