PHP写入获取变量到.txt文件不起作用,没有错误

时间:2017-09-10 20:57:54

标签: php json get

我正在使用PHP来捕获GET变量,然后将它们写入文本(.txt)文件,以后我可以打开文件并获取变量。

我的所有代码都列在下面,它不会写入文件而且没有错误,感谢阅读。

<?php

//the link is (your domain)/writefile.php?user=$user&password=$pass

$theuser = $_GET["user"];
$thepassword = $_GET["password"];
$full = $theuser . ':' . $thepassword;
echo htmlentities($full); //Potential XSS
$file = 'crackedaccs.txt';
$current = file_get_contents($file);
$current .= "$full \n";
file_put_contents($file, $current, LOCK_EX);

?>

0 个答案:

没有答案