beyzad Posted March 2, 2009 Share Posted March 2, 2009 Hi. i need to count from 00 to FF. How can i to that? Link to comment https://forums.phpfreaks.com/topic/147561-solved-how-to-use-hexadecimal-values/ Share on other sites More sharing options...
Yesideez Posted March 2, 2009 Share Posted March 2, 2009 for ($i=0;$i<256;++$i) { echo $i.'='.bindec($i).'<br />'; } That what you're after? Link to comment https://forums.phpfreaks.com/topic/147561-solved-how-to-use-hexadecimal-values/#findComment-774608 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.