$sql="Select chanceNo From gm_gacha_token1 where token_code='$mytoken'";
$result=mysql_query($sql);
$count=mysql_num_rows($result);
Langauge: PHP
What i am trying to achieve is that, i want to get a single value of chanceNo.. How can i get the value and store it to cookie/sesison and display it in next page??
Any idea, what is the next step or next line of codes??