PHP 8.5.0 Beta 1 available for testing

Voting

: one plus seven?
(Example: nine)

The Note You're Voting On

cyberlot at cyberlot dot net
23 years ago
The below code works for both way processing ;) Have fun folks

<?php
system
("mkfifo pipeout");
$pipe = popen("./nwserver -module Chapter1E > pipeout","w");
$pipeout = fopen("pipeout", "r");
while (
$s = fgets($pipeout,1024)) {
echo
$s;
}

?>

<< Back to user notes page

To Top