On Wed, Jul 21, 2010 at 8:49 AM, Tom Sparks <tom_a_spa...@yahoo.com.au> wrote:
> How do I take the output from a command line program and update a MYSQL 
> database with it?
>
> tom_a_sparks
> Light travels faster then sound, which is why some people appear bright, 
> until you hear them speak
>
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

$cmdop=shell_exec('cmd');
$con=new mysqli(...);
// Check connection error
// Refer to php.net/mysqli
$con->multi_query($cmdop);

-- 
Regards,
Nilesh Govindarajan
Facebook: http://www.facebook.com/nilesh.gr
Twitter: http://twitter.com/nileshgr
Website: http://www.itech7.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to