note 9509 deleted from function.popen by felipe

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: lexzeus at mifinca dot com 

----

Try this (if you're familiar with vi editor) :

<?php
$f=popen("vi newfile.txt","w");
sleep(1);
fputs($f,"i");  // insert

sleep(1);
fputs($f,"Hello world\r"); // write the text to vi Editor

sleep(1);
fputs($f,chr(27));  // cancel action

sleep(1);
fputs($f,":wq\r");  // write and quit

pclose($f); // back to php

exit;
?>

heh heh heh,

LexZEUS
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.