PHP Questions Home | Register | Login
Categories
Arrays
Files
Forms
Creating PDFs
PHP Errors
Functions
Images
MySQL
Numbers
Others
Strings
Website
Unanswered

PHP Forums
Forums Index
MySQL Forum
PHP Forum
Flash/Actionscript
Javascript
Web design

More PHP
PHP Functions
Top Questions
Ask a Question
PHP Interview Questions
PHP Jobs
Ecommerce
IT Questions
Business Websites

Sponsors

sponsor ad
My Salary
PHP Developer Salary
Advertise Here

How can I sort an array keeping the correlation between the index and value?


If you want to do this, then it's time to think of 'a' for 'associative', and use this sort function rather than the regular sort function.

Otherwise it functions the same: asort($array);

<?php
$myworld 
= array("a"=>"php","b"=>"learning","c"=>"i'm");
asort($myworld);
print_r($myworld);
?>


Which prints:

Array
(
[c] => i'm
[b] => learning
[a] => php
)



Comment on this Question and Answer >>>

ASK A QUESTION

More arrays PHP Questions

im getting a Resource id #5 $rs_comp = mysql_query("select * from company where autoID='$row_settings[compid]'");

when i fetch the record in the database but they skip first record in the database

How do I remove the first element from an array?

How do I remove and view the last element of an array?

How do I count the number of times a value appears in an array?



Custom Search