gcc and php

N

Thread Starter

nandos

can u give some suggestion about linking gcc project in web base application such php?

i'm trying to comunicate nonPC devices with my web base application. I want to use gcc Project as a library for my php script.

thanks for your reply!
 
M

Michael Griffin

There are lots of books and web resources on PHP as it is one of the most common programming languages in use today. A quick search on Google for "PHP extension" turned up the following tutorial on writing PHP extensions:

http://www.zend.com/php/internals/extension-writing1.php

If this proves difficult, you might also consider doing this in Python rather than PHP. Extensions in Python are supposedly simpler, although I haven't compared the two to say for sure this is the case. Python is also used for scientific and engineering programming, so the device communication library you are looking for may already exist for that language. You can still use Python as a CGI script, or whatever method you are doing your web interface with.
 
Top