<?php
$chance=$_COOKIE['chanceNo'];
?>
<input length="2" type="text" name="chance" id="chance" readonly="readonly" value="<? echo $chance?>"/>
I am trying to create an onlick function to decrease the number of chances. Like for example, when user click a card/button, $chance in textbox should decrease. How can i go about it?