#web
Ask QuestionNo description yet for this tag.
0 votes
1 answers
0 views
What is PHP?
PHP is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into …
0 votes
1 answers
0 views
What is the distinction between static and dynamic websites?
Static websites show the same content to every visitor, while dynamic websites generate content on the fly, often using a database.
0 votes
1 answers
0 views
What is the difference between GET and POST methods in PHP?
GET sends data through the URL (visible), while POST sends data through the HTTP body (hidden).
0 votes
1 answers
0 views
What is the use of the header() function in PHP?
It is used to send raw HTTP headers to a client (e.g., for redirection).
0 votes
1 answers
0 views
How do you upload a file in PHP?
Using the $_FILES superglobal and the move_uploaded_file() function.