Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. //including files
  3. include('mysql.php');
  4.  
  5. // functions
  6. function name() {
  7. return "הצלחת כפרה";
  8. }
  9. echo name();
  10. ?>
  11.  
  12. <!DOCTYPE html>
  13. <html>
  14. <head>
  15. <meta charset="utf-8">
  16. <title>Damn!</title>
  17. </head>
  18. <body>
  19. <input type="button" name="name" value="Click here!" onclick="alert(<?php name(); ?>)">
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement