how to put links in php

Posted by user225269 on Stack Overflow See other posts from Stack Overflow or by user225269
Published on 2010-04-20T08:30:18Z Indexed on 2010/04/20 8:33 UTC
Read the original article Hit count: 310

Filed under:
<?php>   
 while($row = mysql_fetch_array($result2))
      {
       echo "<tr>";
       echo "<td>" . $row['IDNO'] . "</td>";
    echo "<td>" . $row['ADDRESS'] . "</td>";
      echo "<td>" . $row['LASTNAME'] . "</td>";
        echo "<td>" . $row['FIRSTNAME'] . "</td>";
          echo "<td>" . <a href='update.php'>view</a> . "</td>"; 

      echo "</tr>";
      }
    echo "</table>";
    }
?>

That's my code, I really don't know the correct format of putting links inside the php tags:

 echo "<td>" . <a href='update.php'>view</a> . "</td>"; 

Please help

© Stack Overflow or respective owner

Related posts about php