Help for this page

Select Code to Download


  1. or download this
    $cmd = 'someshellexe ' . $basepath . '/' . $file;
    $rc  = qx($cmd);
    
  2. or download this
    $cmd = 'someshellexe ' . $basepath . '/' . $file;
    $escapedcmd = quotemeta($cmd);
    $rc  = qx($escapedcmd);