Hello guys, I am just a newbie in web development and I want to make a web app can do list this. Example. I have a table like this.
id name
1 aaaa
2 bbbbb
3 ccccccc
I can handle the access database method, but the problem is I do not know how to create a Web Request (or Web Service, I don't know) like this: localhost:8080/user?id=[parameter]. Example. when I set parameter is "1", it will respond a JSON content on the page, like user {id=1;name=aaaa;} or when I set it is "2", it will return user {id=2;name=bbbbb;}.
I am really apologize for this question because I don't understand at all what can I call it. Please tell me what I need to do or explore, thank you so so much!