Posted by Nikola Skoric on 12/18/25 11:49
I have this very simple PHP script:
#!/usr/local/bin/php -q
<?php
$post="From: \"Burek\" <burek@burek.hr>\\nSubject: foobar\\nNewsgroups:
hr.test\\n\\nNesto, nesto.';
$command="echo -ne \"mode reader\\npost\\n" . $post . "\\n.\\nquit\\n\"
| nc news.carnet.hr 119\n";
echo $command;
exec($command);
?>
And it fails to execute:
PHP Parse error: parse error in /home/users/n/nick/bin/postFAQ.php on
line 6
I have dissected the script and found that when I write it this way:
$command=
"echo"
. " -ne \"mode reader\\npost\\n" . $post . "\\n.\\nquit\\n\" | nc
news.carnet.hr 119\n";
Then the error is on the line where "echo" is. Now, what am I missing?
--
"Now the storm has passed over me
I'm left to drift on a dead calm sea
And watch her forever through the cracks in the beams
Nailed across the doorways of the bedrooms of my dreams"
Navigation:
[Reply to this message]
|