What's wrong with the following code? I keep getting Parse Error on the line starting with $1Content.
function thank_you(){
$1Content = '<p><br>
<font face="Verdana, Arial, Helvetica, sans-serif">Your form input has been processed. Thank you, '. $Name .' , for your contribution. Please click on a link to further browse our site.</font></p>';
$1filename = "stuffTemplate.html";
$1fd = fopen($filename, "r");
$1blah = fread($1fd, filesize ($1filename));
fclose ($1fd);
$1convert = str_replace("{CONTENT}", $1Content, $1blah);
$1final = str_replace("{title}", "Thank You for your Feedback.", $1convert);
echo $1final;
}
Also, how do I access files on the user's computer? I keep getting an error saying the file cannot be accessed when the value is C:\whatever\file.txt , the file is there but it cannot access it.
Please help.