Başka bir forma numarası Passing

0 Cevap php

im edit_doc.php başka bir formda düzenlenebilir belirli bir veri bilgi aktarmak için çalışıyorum. Ancak, ben "Düzenle" düğmesini tıklayın zaman çalışmak için görünmüyor. Sadece edit_doc.php görünmüyor bilgilerin ancak açar. Ther kodları herhangi bir hata mı? Lütfen yardım edin.

[Php]

  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=edit_doc.php?id=<?php $['id']; ?>" . "Edit" . "</a></td>";

      echo "</tr>";

    }
   echo "</table>"; 

[/ Php]

Teşekkür ederim.

0 Cevap