View Single Post
Old 10-16-2007, 02:21 PM   #2 (permalink)
Karl
The Reckoner
Advanced Programmer Top Contributor 
 
Karl's Avatar
 
Join Date: Sep 2007
Posts: 437
Thanks: 22
Karl is on a distinguished road
Default

Hi meshi, try this:

PHP Code:
$szHref =     '<a href="' .  $_SERVER["PHP_SELF"] . 
            
'?click=client_list.php&menu=1&empid=' 
            
$row['employer_id'] . ">$rowemployer_name</a>";

$jobs = array(    $szHref                         => 'Client Name',
                
nl2br($row['description'])        => 'Description',
                
nl2br($row['qualifications'])    => 'Qualifications',
                
$row['status']                     => 'Status Id',
                
$row['value']                    => 'Location',
                
$row['name']                    => 'Industry',
                
$row['position']                => 'Position',
                
$row['vacancy_type']            => 'Vacancy Type',
                
$row['keywords']                => 'Keywords'
          
); 
__________________
Any fool can write code that a computer can understand. Good programmers write code that humans can understand.
Karl is offline  
Reply With Quote