Advertisement
Guest User

Untitled

a guest
Jun 1st, 2016
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <?php
  2. while($row=mysqli_fetch_array($res))
  3. {
  4. ?>
  5. <a href="http://localhost/profileviews/view.php?name=<?php echo $row["username"]; ?>"><?php echo $row['username']; ?></a>
  6. <?php
  7. }
  8. ?>
  9.  
  10. while($row=mysqli_fetch_array($res))
  11. {
  12. echo'<a href="http://localhost/profileviews/view.php?name='.$row['username'].'">'.$row['username'].'</a>
  13. }
  14.  
  15. while($row=mysqli_fetch_array($res))
  16. {
  17. $username = $row['username'];
  18. echo "<a href='http://localhost/profileviews/view.php?name=$username'>$username</a>";
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement