New at this, somewhat:

<?php
#http://www.php.net/manual/en/ref.array.php
$EricCodesArray = array (
    "CO" => "Description", "Input Name", "Select Name", "Option Name", "Option 
Selected",
    "AN" => "ERIC Number", "EricAN", "SelAN", "AN", "AN «Annotation»",
    "TI" => "Title", "EricTI", "SelTI", "BT", "BT «Book Title»"
);

echo $EricCodesArray=>TI[2]; //should display "SelTi"

?>

I want to display "SelTi". How to code for it? I know I should know this.
EricCodesArray where TI = [2]

? :)
John


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to