Guest User

Untitled

a guest
Oct 17th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.     class Form {
  3.        
  4.         public function open($x) {
  5.             return "<form action='$x' method='$x'>";
  6.         }
  7.            
  8.     }
  9.    
  10. $form = new Form;
  11.    
  12. echo $form->open('index.php, post');
  13.  
  14.  
  15. -------ERROR-------
  16.  
  17. <form action='index.php, post' method='index.php, post'>
Add Comment
Please, Sign In to add comment