Page 1 of 1

Pascal software and PHP

Posted: Thu Jun 23, 2011 1:32 pm
by toplisek
I have some Pascal software and like to implement on server. Is there any option to work on server side? Windows, Linux, Apache...

Is it option to transfer to other language and make it PHP implementation?

Re: Pascal software and PHP

Posted: Thu Jun 23, 2011 2:30 pm
by Christopher
Does the Pascal software just process data or does it have a user interface? If it just processes data then you could call the Pascal program from PHP using exex() (or similar function -- there are several).

If it has a user interface then you would probably need to rewrite it. PHP is a C like language, so it should not be too difficult.

Re: Pascal software and PHP

Posted: Fri Jun 24, 2011 1:38 am
by toplisek
Yes, it has a user interface. Is this option to make working field (user inteface inside PHP enviroment) and work Pascal scripts in Linux or user interface should be coded in PHP and all other Pascal script transformed to PHP?