I hope there is someone out there that can suggest a solution to my
problem.
So here we go:
$command="myapp .exe -P d:\mydir\mySubD ir";
echo "<td><a href=\"javascri pt:LaunchApp('$ command')\">bla h</a></td>";
This works fine. But when 'mySubDir' becomes 'my Sub Dir' myapp
requires quotes:
myapp.exe -P "d:\mydir\m y Sub Dir"
So I tried (along with several variations):
echo "<td><a href=\"javascri pt:LaunchApp('m yapp.exe -P "d:\mydir\m y
Sub Dir"')\">blah</a></td>";
echo "<td><a href=\"javascri pt:LaunchApp('m yapp.exe -P \"d:\mydir\m y
Sub Dir\"')\">blah</a></td>";
Whatever I tried my string ends after -P
Regards,
JZ
problem.
So here we go:
$command="myapp .exe -P d:\mydir\mySubD ir";
echo "<td><a href=\"javascri pt:LaunchApp('$ command')\">bla h</a></td>";
This works fine. But when 'mySubDir' becomes 'my Sub Dir' myapp
requires quotes:
myapp.exe -P "d:\mydir\m y Sub Dir"
So I tried (along with several variations):
echo "<td><a href=\"javascri pt:LaunchApp('m yapp.exe -P "d:\mydir\m y
Sub Dir"')\">blah</a></td>";
echo "<td><a href=\"javascri pt:LaunchApp('m yapp.exe -P \"d:\mydir\m y
Sub Dir\"')\">blah</a></td>";
Whatever I tried my string ends after -P
Regards,
JZ
Comment