Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. echo '<a href="$db_field['ProductLink'] '/> . $db_field['ProductName'] . '</a>";
  2.  
  3. echo '<a href="'.$db_field['ProductLink'].'">' . $db_field['ProductName'] . '</a>";
  4.  
  5. echo '<a href="'.$db_field['ProductLink'].'"/>'.$db_field['ProductName'].'</a>';
  6.  
  7. echo '<a href="' . $db_field['ProductLink'] . '"/>' . $db_field['ProductName'] . '</a>';
  8.  
  9. echo '<a href="' . $db_field['ProductLink'] . '">' . $db_field['ProductName'] . '</a>';
  10.  
  11. echo "<a href='{$db_field['ProductLink']}'>{$db_field['ProductName']}</a>";
  12.  
  13. echo '<a href="' . $db_field['ProductLink'] . '">' . $db_field['ProductName'] . '</a>';
  14.  
  15. echo "<a href="{$db_field['ProductLink']}"/>{$db_field['ProductName']}</a>";
  16.  
  17. echo '<a href="' . $db_field['ProductLink'] . '"/>' . $db_field['ProductName'] . '</a>';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement