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 ) {
>
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 ) {
break;
}
}
for ($i = 0; $i < sizeof($src_ip)
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/
Php 4.3.4
Win 2000
I am attempting to have the exec function open a file for editing. The
file opens, however php hangs until I close the file that was orginally
opened. I read in the php manual that states:
"If you start a program using this function and want to leave it running
in the backgro
I'm running with some trouble with exec(), system() and it's friends...
I have a MySQL backup script that somewhere have something like
$cmd="mysqldump .. > somefile.sql";
if( !fopen("somefile.sql","r") ) { print error message };
$cmd is correct... I've copy-pasted it tons of times in the
8 matches
Mail list logo