InterviewSolution
Saved Bookmarks
| 1. |
What is associative array in PHP? |
|
Answer» Associative arrays are used to store key and VALUE pairs. For example, to SAVE the marks of the unique subjects of a SCHOLAR in an array, a numerically listed array would no longer be a nice choice. Example/* Method 1 */ |
|