Page 1 of 1

Can I use PHP?

Posted: Wed Apr 04, 2012 3:03 pm
by Jgc

Can I use PHP in tiggzi? Specifically I want to use it on the map widget. I want to use PHP's fgetcsv method to parse a Excel CSV file......Please advise. Thanks!


Can I use PHP?

Posted: Thu Apr 05, 2012 1:08 am
by maxkatz

PHP is a server-side technology, so the answer is no. As you are building an HTML mobile app, you can use JavaScript.


Can I use PHP?

Posted: Wed Feb 27, 2013 9:17 am
by David Fung

I have a program in php and use the _REQUEST[ ] syntax. Can I deploy it in JavaScript?

// get sender, recipient fields
$subject = $REQUEST['subject'];
$text = $REQUEST['body-plain'];
...
...

Thanks!


Can I use PHP?

Posted: Wed Feb 27, 2013 12:10 pm
by Maryna Brodina

Hello! array $_REQUEST contains HTTP Request variables. These variables are transmited to server (as PHP is a server language). JS executes in browser. So it's not clear what you want to get in your variables. Could you clarify it please (some fields values etc.)


Can I use PHP?

Posted: Wed Feb 27, 2013 3:16 pm
by David Fung

I am going to write a program which receives the mail issued by mailgun. Here is their documentation.

http://documentation.mailgun.net/user...

In php, I can use the _$REQUEST to collect the http post generated by mailgun. I am not sure whether JS can do the same function.


Can I use PHP?

Posted: Wed Feb 27, 2013 3:54 pm
by Kateryna Grynko

Hi David,

PHP is for server programming. Tiggzi is for mobile apps developing.
To get mail via MailGun (http://documentation.mailgun.net/user...) on any server, create a Rest Service to be called when new incoming mail.
You cannot do it with Tiggzi, because Tiggzi is for mobile applications, not for server apps.


Can I use PHP?

Posted: Wed Feb 27, 2013 4:26 pm
by David Fung

I see. Thanks!