Hi,
I've been running into the M ,(CTRL+M), character a lot.
If I use PHP to edit a txt file, or call shell commands, it seems to stick M everywhere.
I can't figure out why, or how to stop it.
My current scenario, is trying to use the passwd function in linux, from PHP.
I've tried it with popen, and with proc_open...
<?
//open pipe
$pipe = popen("passwd","w");
//add new password, repeat it.
fputs($pipe,"abc123\n");
fputs($pipe,"abc123\n");
pclose($pipe);
?>
But my password gets set to M.
Any ideas?
andre @ performance technologies