Php Interview Question and Answers
5. |
How would you access a record from a database by name? |
|
The dba_fetch() function returns an element given a DBA resource and the element's name. |
|
|
6. |
Which MySQL function would you use to select a database? |
|
The mysql_select_db() function attempts to select a database. |
|
|
7. |
What does the server response code 404 mean? |
|
The server response 404 means that the requested page or resource cannot be found on the server. |
|
|
8. |
Which function would you use to make a network connection? |
|
The fsockopen() function establishes a connection with a remote server. |
|
|