TalkPHP

TalkPHP (http://www.talkphp.com/forums.php)
-   General (http://www.talkphp.com/general/)
-   -   help me with this href thing (http://www.talkphp.com/general/1309-help-me-href-thing.html)

meshi 10-16-2007 01:09 PM

help me with this href thing
 
PHP Code:

$jobs = array( "<a href="'; echo $_SERVER["PHP_SELF"];echo '?click=client_list.php&menu=1&empid='.$row['employer_id'].'">$rowemployer_name]</a>" =>'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'
              
); 

in my client name i want to put that href.but it has an error...i think the quotes or something..please help me..

Karl 10-16-2007 02:21 PM

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'
          
); 


meshi 10-16-2007 02:39 PM

its now working karl..tanx

meshi 10-17-2007 01:39 PM

oops sori if i post it wrong!!!


All times are GMT. The time now is 12:23 PM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0