I successfully select some values with php and sql, which are passed to my application with JSON.
([{"id":"1","email":"[email protected]","county":"world","age":"6","gender":"unisex","poll":"option1"}]);
In my application i can select the values passed with jquery ajax:
var landmark = '<p>'+item.email+'<br>' + item.county+'<br>' + item.age+'<br>' + item.gender+'<br>' + item.poll+'</p>';
But instead of putting them into paragraphs, how can i just update the form with the values?