Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <h1>reserver</h1>
  2. <form action="" method ="post">
  3. <input type="text" name="seat">
  4. <input type="text" name="type">
  5. <input type="text" name="quantity">
  6. <input type="submit">
  7. </form>
  8.  
  9. class reservationController extends Controller
  10. {
  11. public function CreateReservationtAction(String seat ,String type ,String Quantity){
  12. //code to insert into database
  13. return $this->render("pages/reserver.html.twig");
  14. }
  15. }
  16.  
  17. techevent_reservation:
  18. path: /res
  19. defaults: { _controller: techeventBundle:reservation:CreateReservation }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement