Advertisement
Guest User

Untitled

a guest
Jul 31st, 2012
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. PHP Javascript Link
  2. echo"<a href="$urlHTML" onclick="return confirm('Please Confirm You Wish to Add these Details')">Delete</a>";
  3.  
  4. Parse error: syntax error, unexpected T_RETURN, expecting ',' or ';' in E:xampphtdocsIDBdelete.php on line 411.
  5.  
  6. echo"<a href="$urlHTML" onclick="return confirm('Please Confirm You Wish to Add these Details')">Delete</a>";
  7.  
  8. echo '<a href="'.$urlHTML.'" onclick="return confirm('please confirm')">Delete</a>';
  9.  
  10. echo "<a href="$urlHTML" onclick="return confirm('Please Confirm You Wish to Add these Details')">Delete</a>";
  11.  
  12. echo"<a href="$urlHTML" onclick="return confirm('Please Confirm You Wish to Add these Details')">Delete</a>";
  13.  
  14. ?>
  15. <a href="<?=$urlHTML?>" onclick="return confirm('Please Confirm You Wish to Add these Details')">Delete</a>
  16. <?php
  17.  
  18. echo"<a href=".$urlHTML." onclick="return confirm('Please Confirm You Wish to Add these Details')">Delete</a>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement