<?php function draw_card($initial = 0) { $GLOBALS['draw_card_total'] = ( isset($GLOBALS['draw_card_total']) ? $GLOBALS['draw_card_total']+1 : $initial ); return $GLOBALS['draw_card_total']; } // optionally set your start value echo draw_card(1); echo draw_card();
You have javascript disabled. You will not be able to edit any code.