At the moment I am trying to build a "Shout it script" that uses a flat file txt to store the info.
$name = $_GET[name];
$message = $_GET[message];
if ($name != NULL) {
$file_pointer = "shout.txt";
$file_handle = fopen($file_pointer, "a");
fwrite($file_handle, "$name" . "||" . "$message");
}
I need it to fwrite $name . || . $message . New line
So my txt file will look like this
Megahertza||Hello
Guest||Nice Site
Someguy||SUp guys
I tried usesing "\n" for line feed but it outputs a special character that looks like a box
Megahertza||Hello("BOX")