chucknology Posted June 25, 2008 Share Posted June 25, 2008 Hi, I'm adapting an extension for joomla and I got an explanation from someone what I should do. Only 1 thing I can't find and the guy doesn't answer anymore. So I'm calling here for help. This is the code I'm talking about: <tr> <td><?php echo date("d M, Y (D)", $result['gigdate']); ?></td> <td><?php echo $resultb["bandname"] ; ?></td> <td><?php echo $resultv['venuename'] ; ?></td> </tr> It shows a list of gigs that happen in a certain venue. What I have to do now is to add following link to the gigdate: <?php echo $mosConfig_live_site . "?option=com_gigcal&task=details&gigcal_gigs_id=". $result['gigcal_gigs_id'] . $itemidfix; ?> How do I do that? All help is very welcome. Greetz, Chucknology Link to comment https://forums.phpfreaks.com/topic/111822-link-to/ Share on other sites More sharing options...
rhodesa Posted June 25, 2008 Share Posted June 25, 2008 like this? <tr> <td><a href="<?php echo $mosConfig_live_site . "?option=com_gigcal&task=details&gigcal_gigs_id=". $result['gigcal_gigs_id'] . $itemidfix; ?>"><?php echo date("d M, Y (D)", $result['gigdate']); ?></a></td> <td><?php echo $resultb["bandname"] ; ?></td> <td><?php echo $resultv['venuename'] ; ?></td> </tr> Link to comment https://forums.phpfreaks.com/topic/111822-link-to/#findComment-574073 Share on other sites More sharing options...
chucknology Posted June 25, 2008 Author Share Posted June 25, 2008 Indeed...it was this easy so......... ...but now I know..... Thanks a lot....I can actually finish my site now.... Link to comment https://forums.phpfreaks.com/topic/111822-link-to/#findComment-574075 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.