Passing ID to another form

acaskeiit

New Member
im trying to pass the information of a specific data to be edited in another form which is edit_doc.php. However, when i click "Edit" it doesnt seem to work. Only edit_doc.php opens but the information the does not appear. Is ther any mistake in the codes? Please help.
PHP:
\[code\]  echo "<table border='1'>    <th>File Reference No.</th>    <th>File Name</th>    <th>Owner</th>    <th>iShare URL</th>    <th>Edit</th>    <th>Borrow</th>    <th>Delete</th>    </tr>";    while ($rows = mysql_fetch_assoc($run))      {      echo "<tr>";      echo "<td>". $rows['file_ref']  ."</td>";      echo "<td>". $rows['file_name'] ."</td>";      echo "<td>". $rows['owner'] ."</td>";      echo "<td>". $rows['url']    ."</td>";      echo "<td><a href=http://stackoverflow.com/questions/3922116/edit_doc.php?id=<?php $['id']; ?>" . "Edit" . "</a></td>";      echo "</tr>";    }   echo "</table>"; \[/code\]
Thank you.
 
Back
Top