I have the following FOR condition:
<? for($i=0; $i<=9; $i++){ ?>
<input type="button" value="<?=$i?>" name="no" onclick="moveNumbers(this.value)" class="btn btn-default">
<? } ?>
I would like instead of displaying 0, 1, 2, 3 ... to display randomly. How can I do this?