Jump to content

Recommended Posts

  • Moderators
Posted

Hey,

I have been messing about for a while and cant get it to work, brain has totally fried now.

This is what i currently have which is not right but it does work,

echo "<td align=center> <a href=\"../index.php/pireps/view/$pirep->pirepid\"/> $pirep->code$pirep->flightnum </a> </td>";

So when i change it to the below the url works fine but i can seem to echo out the variable to display the EZY flight number all i get in the table is the code $pirep->code$pirep->flightnum.

echo '<td align=center> <a href='.SITE_URL.'/index.php/pireps/view/'.$pirep->pirepid.'/>$pirep->code$pirep->flightnum </a> </td>';

Help would be greatly appreciated from one of you experts :)

Cheers.

Posted

Hi

The problem looks like your actually echoing method call as a string,

Try changing this:

echo '<td align=center> <a href='.SITE_URL.'/index.php/pireps/view/'.$pirep->pirepid.'/>$pirep->code$pirep->flightnum </a> </td>';

To This:

echo '<td align=center> <a href='.SITE_URL.'/index.php/pireps/view/'.$pirep->pirepid.'/>'.$pirep->code$pirep->flightnum.'</a> </td>';

Lemmie know if it works,

Posted

echo '<td align=center> <a href="'.SITE_URL.'/index.php/pireps/view/'.$pirep->pirepid.'" />'.$pirep->code.$pirep->flightnum.'</a> </td>';

Correct as far as I can tell from my phone...

  • Moderators
Posted

Thank you Tom, greatly appreciated, I have been working on this for ages, thing is when i left school there was no computers so learning php has been a bit difficult but with the help of some websites and the great community here I'm getting there.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...