Jump to content

Table help


Cyberspace

Recommended Posts

I am trying to add a link in a table that goes to another page:

 

I want to add the href in the line below:

 

	<td class="Join"><?php echo "<a href='JoinWalk.php?WalkNo=$WalkNo'>Join Walk</a>"?></p></td>

 

and add it to the following line instead:

 

<td class="Body"><?php echo $account["WalkNo"]; ?></td>

 

Link to comment
Share on other sites

Eh? Whats the problem exactly?

 

I have the link working, but i want the link included within the "WalkNo" column in the table, just not sure how to add it in:

 

<td class="Body"><?php echo $account["WalkNo"]; ?></td>
<td class="Body"><?php echo $account["Venue"]; ?></td>  
<td class="Body"><?php echo $account["WalkDate"]; ?></td>
<td class="Body"><?php echo $account["Leader"]; ?></td>
<td class="Join"><?php echo "<a href='JoinWalk.php?WalkNo=$WalkNo'>Join Walk</a>"?></p></td>

 

for example:

 

<td class="Body"><?php echo $account["WalkNo"]; "<a href='JoinWalk.php?WalkNo=$WalkNo'>Join Walk</a>" ?></td>

 

 

Link to comment
Share on other sites

<td class="Body">
<?php 
echo $account["WalkNo"]; 
echo ' <a href="JoinWalk.php?WalkNo='.$account['WalkNo'].'">Join Walk</a>';
?></td>

 

Is that what you wanted?

 

I dont need the "Join walk" in, i just want the "WalkNo" that is displayed on the table as the link, sorry for the confusion  :-[

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

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.

×
×
  • 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.