Okay got my php scripts working sorta... What I am trying to do now is output to a text file(http://www.mcraft59.com/forma.html).
My current code for my script is:
<?php
$input=fopen("try.txt", "a");
fwrite($input, $name);
fwrite($input, $color);
fclose($input);
?>
Unfortunately, my text file remains empty. I checked file permissions and it has user write enabled.
I checked my form to make sure it was capturing variables correctly: http://www.mcraft59.com/simple.html , it just displays my data through the echo command.
Another Question
Moderator: General Moderators