Advertisement
Guest User

Untitled

a guest
Oct 8th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. $url = "edit_beginningcakephp.php?title=$title&author=$author&isbn=$isbn
  3. &year=$year&pages=$pages&price=$price";
  4. >?
  5.  
  6. <input type="button" value="Edit Book" onclick="window.location.href='<?= $url ?>'">
  7.  
  8. $url = 'edit_beginningcakephp.php?title='.urlencode($title).'&author='.urlencode($author),'&isbn='.urlencode($isbn).'&year='.urlencode($year).'&pages='.urlencode($pages).'&price='.urlencode($price);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement