Php Interview Question and Answers
13. |
Which function could you use to escape a string for inclusion in a query string? |
|
The urlencode() function translates a string so that it can be included in a query string. |
|
|
14. |
Which PHP function would you use to send an email? |
|
You can send email with the mail() function. |
|
|
15. |
What does HTTP stand for? |
|
HTTP stands for Hypertext Transfer Protocol. |
|
|
16. |
How would you open a directory for reading? |
|
The opendir() function enables you to open a directory for reading. |
|
|