HTTP help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jayhunters14
    New Member
    • Mar 2007
    • 7

    HTTP help

    Hi everyone,

    i am an undergrad in physics.my thesis is about GPRS.i have a wireless module that sets up a connection to the internet. when i connect to the web server it can communicate using http protocols.my problem is i have no back ground on http protocols(GET,P OST)..can anyone give me a hand regarding this protocols? a client POST and how the server handles this POST by the client would be helpful.can someone guide me? all i need is to set up a webserver that has a single
    db table with about ten entities. and the value i pass from the client is stored to the table.i dont know how to accomplish this using just post method or get method.hope someone can help me
  • Akhilesh1505
    New Member
    • Feb 2007
    • 17

    #2
    Originally posted by jayhunters14
    Hi everyone,

    i am an undergrad in physics.my thesis is about GPRS.i have a wireless module that sets up a connection to the internet. when i connect to the web server it can communicate using http protocols.my problem is i have no back ground on http protocols(GET,P OST)..can anyone give me a hand regarding this protocols? a client POST and how the server handles this POST by the client would be helpful.can someone guide me? all i need is to set up a webserver that has a single
    db table with about ten entities. and the value i pass from the client is stored to the table.i dont know how to accomplish this using just post method or get method.hope someone can help me
    You can insert your data in DB by any of two (POST or GET).
    The differences are:: GET will send data to server in the form of querystring, that is less secure as it is visible in browser's URL also there is a limit of data in GET.
    With the POST browser send data to server in the form of FORM body. it is more secure not visible in Browser's URL.

    Comment

    Working...