Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

$row[0] is user_id when i click on user_id i need to know how to get the value i clicked from the html table using php so i can use this id to select its data into another form so i can edit it

$select = "SELECT U.id, U.first_name, U.last_name, U.email_address, U.password, U.gender, U.day, U.month, U.year, COUNT(O.user_id) FROM users U LEFT JOIN orders O ON U.id = O.user_id GROUP  BY U.id ORDER BY id $order LIMIT $offset , $rowsPerPage";    
$result=mysql_query($select) or die(mysql_error());
while($row=mysql_fetch_array($result)){ ?>

<table>
<tr>      
    <td><?php echo "<a href= 'editUser.html'> $row[0]</a>"; ?></td>
    <td><?php echo $row[1];?></td>
    <td><?php echo $row[2];?></td>
    <td><?php echo $row[3];?></td>
    <td><?php echo $row[4];?></td>
    <td><?php echo $row[5];?></td>
    <td><?php echo $row[6];?></td>
    <td><?php echo $row[7];?></td>
    <td><?php echo $row[8];?></td>
    <td><?php echo $row[9];}
    </tr>
</table>
share|improve this question

3 Answers

Pass as query string and will be available in $_GET

<td><?php echo "<a href= 'editUser.html?id=".$row[0]."'> $row[0]</a>"; ?></td>

You can get in next page like this

echo $_GET['id'];
share|improve this answer

You can't "get" id from HTML table.
You can only send it using a hyperlink

$select = "SELECT U.id, U.first_name, U.last_name, U.email_address, U.password, U.gender, U.day, U.month, U.year, COUNT(O.user_id) FROM users U LEFT JOIN orders O ON U.id = O.user_id GROUP  BY U.id ORDER BY id $order LIMIT $offset , $rowsPerPage";    
$result=mysql_query($select) or die(mysql_error());
while($row=mysql_fetch_array($result)){ 
  $data[] = $row;
}
?>

<table>
  <tr>
<? foreach($data as $row) { ?>
    <td><a href="edituser.php?id=<?php echo $row['id']?>"><?php echo $row['id']?></a></td>
<? } ?>
  </tr>
</table>
share|improve this answer

you can use Ajax request to send data from table to server.

share|improve this answer
thank you for your answer – bm2001 Apr 6 '11 at 8:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.