Jgc
Posts: 0
Joined: Wed Mar 07, 2012 8:58 pm

Can I use PHP?

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!

maxkatz
Posts: 0
Joined: Fri Aug 13, 2010 3:24 pm

Can I use PHP?

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

David Fung
Posts: 0
Joined: Wed Nov 28, 2012 4:52 pm

Can I use PHP?

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!

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

Can I use PHP?

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.)

David Fung
Posts: 0
Joined: Wed Nov 28, 2012 4:52 pm

Can I use PHP?

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.

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

Can I use PHP?

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.

David Fung
Posts: 0
Joined: Wed Nov 28, 2012 4:52 pm

Can I use PHP?

I see. Thanks!

Return to “Issues”