Mega Code Archive
Using popen() to Pass Data to the column Application
Using popen() to pass data to the column command
data.txt", "w" ) or die( "Couldn't open connection to 'column' command" );
foreach ( $products as $prod )
fputs( $ph, join('/', $prod)."\n");
pclose( $ph );
?>