|
 |
Chambers wrote:
> Actually, I just need an app to be run by the server, at the request of certain
> web pages. The output could then be retrieved by other web pages.
So you're going to need to spawn a new process to handle things anyway, or
your web browser will time out. Hence, you can use any language you want to
do the computations, and use PHP to spawn it trivially.
> It's not that HTML itself is a problem; it's that the app I need to write would
> do some rather heavy duty processing which I am more experienced with writing in
> C based languages.
OK. If your "heavy duty processing" takes more than a minute or so, you need
to write a CGI page that will start it, and another that will let you know
if it's done and return the results, and you'll have to coordinate it.
--
Darren New, San Diego CA, USA (PST)
Human nature dictates that toothpaste tubes spend
much longer being almost empty than almost full.
Post a reply to this message
|
 |