is it possible to jump to C++ code in php? I have an existing C++ program, but i need an interface to the web... can you give me some help...
Thanx
Nikki,
It is likely that your code can be ported from C++ to PHP. If you are talking about some automated conversion script I don't think this is available. Maybe if you explain the general layout of your code I could help.
losang
Well, you can run programs with some of PHP's functions, like
exec system passthru
And you could output any resulting data into a webpage with the passthru function..
check'em out in the manual ..