Everything is ok but mt & cat give me null...
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Video Club</title>
</head>
<body>
    <h1>Movie & Customer Info</h1>
     <%
    String name = request.getParameter("name");
    out.println("Όνομα: " + name); 
    %><br><br>
    <%
    String sur = request.getParameter("surname");
    out.println("Επίθετο: " + sur);
    %><br><br>
    <%
    String card = request.getParameter("card");
    out.println("Πιστωτική κάρτα: " + card);
    %><br><br>
    <%
    String mt = request.getParameter("MovieTitle");
    out.println("Τίτλος Ταινίας: " + mt);
    %><br><br>
    <%
    String cat = request.getParameter("category");
    out.println("Category: " + cat);
    %>
</body>
I'm using netbeans IDE 8.0.2 and this is finalResults.jsp linked with checkout.jsp
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Video Club</title>
</head>
<body>
    <h1>Checkout</h1>
    <h3>Please Use Latin Characters</h3>
     <%
    String mt = request.getParameter("MovieTitle");
    out.println("Τίτλος Ταινίας: " + mt); 
    %>
    <form action ="finalResults.jsp" method="post">
        <br>
    Όνομα:<br>
        <input type="text" name="name">
        <br>
    Επίθετο:<br>
        <input type="text" name="surname">
        <br>
    Πιστωτική κάρτα:<br>
        <input type="text" name="card">
    <br><br>
        <input type ="submit" value ="Ολοκλήρωση"/>
    </form>
</body>
checkout.jsp has also a previous one named list.jsp and before that is index.jsp
 
    