开发者

Write to text file problem in PHP

I have this page called up.php that adds 1 to a txt file set with all permissions.

<?php

$name = file_get_contents("name.txt");

if(!file_exists('number.txt')){
file_put_contents('number.txt', ((int) fil开发者_如何转开发e_get_contents('number.txt')) + 1);
header('Location: "$name.txt");
} 

?>

I have a form action button that runs this php page, however the browser comes back with this:

Parse error: syntax error, unexpected $end in /up.php on line 10.

I am lost here. Any ideas on why this is happening?


You're just have unbalanced quotes, change header('Location: "$name.txt"); to header('Location: "$name.txt"');


You're missing a single quote in the header() line.


I looks like you're missing a closing single-quote on the header() line.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜