PHP form actioned sayfaya değişken taşıma değil?

0 Cevap php

i craigslist için bir html sayfası oluşturmak için bir form oluşturmak için çalışıyorum. burada şeklidir

            <html>
            <head>


            </head>
            <body>


            <form action="bodytest.php"  method="post">

            Year
            <input type="text" name = "Year">;
            Make
            <input type="text" name = "Make">;
            Model
            <input type="text" name = "Model">;

            <input type="submit" value="Proceed">

            </form>

            </body>
            </html>

o zaman burada ben bilgi çekin istediğiniz kod pasajı

            <tr>
            <?php
            $year = $_POST['Year'];
            ?>
            <td style=" margin:5px; width:100px;">  <?php echo $year ?>  </td> 

Bu alana bilgi çekerek değil nedense, ne yanlış gidiyor?

0 Cevap