Jump to content

link to


chucknology

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.