Reputation: 8435
I am planning to create application which has a database built into MySQL and to access those data i am planning to create REST webservices which returns the data in JSON , so that it can be easily access from JQuery Client.
Moreover , i have installed Symfony 2.0 successfully , as i am new to this framework
, i don't know how can i create REST webservices from database.
so can anyone suggest me or give me a road map to kick start with a development of Rest Webservices in symfony.
If any one has some batter solution to create webservice in PHP then please suggest
Upvotes: 1
Views: 3126
Reputation: 599
In addition to prepare the RESTfull API via FOSRestBundle you can use Symfony Forms to validate and process the input data
Upvotes: 0
Reputation: 3240
FOSRestBundle is a good place to start - https://github.com/FriendsOfSymfony/FOSRestBundle
Upvotes: 2