Quote:
Originally Posted by sarel I need some help with executing a shell using PHP.
c:\tools\bin\ogr.exe
<?php $cmd = command string ; shell_exec($cmd); ?> |
I have not done this before but wouldn't the command string be the path?
So:
PHP Code:
<?php
$cmd = "c:\tools\bin\ogr.exe";
shell_exec($cmd);
?>