Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I would create a web application that sends push-notifications to my iPhone when a person filled in a form. How can I send that notification through PHP to my iPhone?
Have a read through Apple Push Notification Services in iOS 6 Tutorial which guides you through everything you will need from creating the certificates/keys to giving you some PHP to use.
You can use the Parse API available on http://www.parse.com to send push notifications easily :)
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
How can I connect to the rest web services in php?
I want to connect to this web service and writing a hotel booking system with php.
hotel web service link
https://pintapin.docs.apiary.io/#reference/users/update-user/update-user
How many ways to do this?
Thanks
I think the curl library will solve what you are trying to do.
Please find the link below for more information on how to call a rest api in PHP.
call rest api in PHP
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to make an app for a wordpress blog but need a very specific feature to be there i.e whenever a new post is made a pushnotification should be made in the user's mobile. how to do that??
Use This Plugin in Your Wordpress and use GCM/FCM API Key for sending the push notification in Android App
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am working on a codeigniter project. How to send push notifications to ios and Android devices?
There are some libraries available.
Firebase (sends push notification to both IOS and android ).
GCM (sends only to android and it is also considered as outdated and overtaken
by Firebase).
Some links which might help you .
https://gist.github.com/joashp/b2f6c7e24127f2798eb2
https://github.com/mac-cain13/notificato
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
So there are websites that use dynamic web pages and use PHP for this. Also websites need to use SQL to run information in their server databases.
How would an iOS app do this? Through the same type of programming (PHP&SQL)?
I'm a student only looking to learn. Thanks!
This should get you started - https://developer.apple.com/library/ios/navigation/#section=Resource%20Types&topic=Getting%20Started
And once you have had a look around in the above link, have a read of this https://developer.apple.com/technologies/ios/
Lastly if you want to really go creative and social check out the iOS SDK for Facebook and start making cool apps - https://developers.facebook.com/docs/ios/ios-sdk-tutorial/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Here is my API call link :
http://192.168.0.107/AYURV/api/V1/user/signup.php
This link only access by only specific android app how can do that?
Advance Thanks.
Have the request sender send a UserAgent and device and app version
This way you can filter incoming requests based on this information on the server side, and reject the ones that don't match.