Is is possible to run ("call") an ASP script from a PHP script? If yes, how?
Thanks icxn
If there's a way to execute ASP from command line, yes. Look at the execution functions ([man]exec/man, [man]shell_exec/man, etc.).
you can use include() with URL like include("http://domainname/path/file.asp");
this would call(run) ASP script and include results in your page...
Hope this helps
TommYNandA