Jump to content

Create Session Variables in Dynamic Tables


joeltonnberg

Recommended Posts

I have a rather simple dynamic table which displays information from a certain column from a database. The code is as follows:

 

<table border="1">

  <tr>

    <td>Name</td>

  </tr>

  <?php do { ?>

    <tr>

      <td><?php echo $row_Recordset1['Name']; ?></td>

    </tr>

    <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>

</table>

 

However, how do I do so I can click on each row of data that is displayed (so it redirect to another page) and create a session variable with the same value as the data in a particular row displayed? For example, if the Recordset retrieve and display the value "james, when clicked I want to create a session variable named "james".

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.