Jump to content

[RESOLVED, thx!]Passing variable from table, through button, into function...


ridiculous

Recommended Posts

Generally:
I have a table of several columns and I want to take a unique piece of data from each row and pass it into another php function for processing. I am trying to keep this data hidden to the viewer.

Specifically:
My objective is to insert a button into each row of my table below, and pass a variable I call $postid to the file get_job_details.php for processing.

I have a feeling the area I have highlighted is wrong in some way, because I am not able to pass the variable to my display function.

<code>

echo "
<td align=left> ".$row['date']."     </td>
<td align=center><b>".$row['title']." </b> </td>
[color=blue]<td align=center> <a href='get_job_details.php'?postid='postid'>
<img src='flesh/detailsbutton.jpg' alt='Details'</a></td>[/color]
<td align=center> ".$row['location']." </td>";

    echo "</tr>";M

</code>
[code]<td align=center>  <a href='get_job_details.php'?postid='postid'>
        <img src='flesh/detailsbutton.jpg' alt='Details'[/url]</td>[/code]
problems:
--img tag not terminated with &gt;
--no link terminating tag /a
--postid should be php variable(needs dollar sign)
[code]<a href='get_job_details.php'?postid='$postid'>[/code]
the $postid variable would have to be set above by you

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.