- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
PHP Pushing values into an associative array?
To push values into an associative array, use the brackets [] []. At first create an associative array −
$details= array ( 'id' => '101', 'name' => 'John Smith', 'countryName' => 'US' );
The PHP code is as follows to insert values −
Example
<!DOCTYPE html> <html> <body> <?php $details= array ( 'id' => '101', 'name' => 'John Smith', 'countryName' => 'US' ); $all_details['studentDetails'][] = $details; print_r($all_details); ?> </body> </html>
Output
Array ( [studentDetails] => Array ( [0] => Array ( [id] => 101 [name] => John Smith [countryName] => US ) ) )
Advertisements