Can i use php with telephony?

I want to know if I can use a php file with a telephone connection or not?

+5
source share
3 answers

No, you can’t. Period. It's my pleasure. However, with phonegap you can download a website running PHP

+6
source

Since PHP is a server-side scripting language, your .php files will be server-side. However, you can connect to php files on an external server and upload the created html file. If you do, you won’t be able to use the Phonegap API, though.

php ajax html , /www/

+3

you must have your javascript application logic to use the telephone plug. there is a php interpreter on phones just controlling your javascript with a web browser.

For security reasons, javascript is loaded from index.html contained within the application. (you cannot go to another page)

therefore, if there is no fancy php for the javascript compiler, I would say that

+1
source

All Articles