I have an iphone app. The user can complete a form. Then the data of the form are passed to a php script. There I parse.
Now, question is:
Is it possible to pass data from a php script to an html form(on a web site this time)?
I.e.
Json sent from the mobile to the php scipt:
{
"Email":"klklkkl",
"DueDate":"1454"
}
The php parse the aforementioned Json.
Now there is on the web site the same form. And I want to pass to the two input boxes that are contained there the aforementioned data. Is this possible?