Search Results

0
votes

What is the difference between HTML tags DIV and SPAN?

As mentioned in other answers, by default div will be rendered as a block element, while span will be rendered inline within its context. But neither has any semantic value; they exist to allow yo …
1
vote

GET versus POST in terms of security?

Many people adopt a convention (alluded to by Ross) that GET requests only retrieve data, and do not modify any data on the server, and POST requests are used for all data modification. While one …