|
Help the Drunk Get Home Follow-up version coming, check back soon! Try this and see how far you can
keep this drunk man up......Good Luck!
|
|||
// mjm:The file must have the extension of .PHP or the code dosen't run
//open the file handler mjm: make sure the file has write access
$fp=fopen("drunk_counter.txt","r");
//Read the previous count
$count=fgets($fp,1024);
//close the file.
fclose($fp);
$fw=fopen("drunk_counter.txt","w");
if (flock($fw, LOCK_EX)) {
// do your file writes here
//Increment the counter
$cnew=number_format($count+1);
//write the counter back to the log file ie., drunk_counter.txt
$countnew=fputs($fw,$count+1);
//Display VISITOR NUMBER
echo "
You are the $cnew th visitor to this page!";
flock($fw, LOCK_UN); // unlock the file
fclose($fw);
}
?>
|
|
|
|
|