I work by example :)
I can't find enough of an example to get me going with this.
I have this:
$glow = popen('afterglow.pl -c color.properties -s -e 3 -p 1 -l 2000 |
neato -Tpng -o /usr/local/www/test.png','r');
how do I feed my array to that?
Thanks.
On Wed, Mar 3, 2010 at 9:04 AM, Richard Q
On Wed, 2010-03-03 at 13:04 +, Richard Quadling wrote:
> On 3 March 2010 13:01, Paul Halliday wrote:
> > I need to pipe some data to an external application.
> >
> > I have this:
> >
> > while ($row = mysql_fetch_array($theData[0])) {
> >$src_ip[] = $row[0];
> >$dst_ip[] = $row[1];
> >
On 3 March 2010 13:01, Paul Halliday wrote:
> I need to pipe some data to an external application.
>
> I have this:
>
> while ($row = mysql_fetch_array($theData[0])) {
> $src_ip[] = $row[0];
> $dst_ip[] = $row[1];
> $sig_desc[] = $row[2];
>
> $rec ++;
> if ( $rec == $recCount ) {
>
John W. Holmes wrote:
Mark wrote:
The syntax I am using is this.
system('cmd/c start notepad my.txt', $results);
or
exec('start notepad my.txt', $results);
You shouldn't be using exe() or system() for this, use fopen() to open a
file from within PHP for editing.
Thanks for the reply. The fopen
Mark wrote:
The syntax I am using is this.
system('cmd/c start notepad my.txt', $results);
or
exec('start notepad my.txt', $results);
You shouldn't be using exe() or system() for this, use fopen() to open a
file from within PHP for editing.
--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/
5 matches
Mail list logo