![]() |
|
|
//set the count file $counterfile = "count.dat"; //check the file is readable if(!($fp = fopen($counterfile,"r"))) die ("cannot open counter file"); //grab the value and increase by 1 $count = (int) fread($fp, 20); fclose($fp); $count++; //show the result, write the new value and close the file echo "Voucher: GCB $count"; $fp = fopen($counterfile, "w"); fwrite($fp , $count); fclose($fp); ?> //set the count file $counterfile = "count2.dat"; //check the file is readable if(!($fp = fopen($counterfile,"r"))) die ("cannot open counter file"); //grab the value and increase by 1 $count = (int) fread($fp, 20); fclose($fp); $count++; //show the result, write the new value and close the file echo "Serial Number: WHALE $count"; $fp = fopen($counterfile, "w"); fwrite($fp , $count); fclose($fp); ?>
|
|
|
|
If you are unable to print out this voucher
then simply write
down the Voucher Number and Serial Number
and quote these two numbers when you book your tickets
to be able to get your
10% discount.