I have a simple form with one varible I am using to test this script. the variable name is quizNew. I am calling this php file and the variable never gets there. It opens the text file and writes nothing. I have also tried to just print the passed variable, and it isn't getting there. PHP is installed this file works fie if I type
"test" instead of $quizNew. I can't figure this out Please help!!!.
<?php
$filename = "number.txt";
$handle= fopen($filename,'w');
fwrite($handle, $quizNew);
fclose($handle);
print "data written to file successfuly";
?>