我在哪里可以找到免费的PHP表单?

There is a question concerning PHP. Whether there is a product similar on a functional liks PHP forms but is more cheaper? Thanks!

You can't get free fish, but you can certainly learn how to fish. Here you go.

<form name='formName' action='location of php script' method='post or get'>
    <input name='nameOfInputVar'>
</form>



<?php
    #get vars from URL
    $nameOfInputVar = $_GET['nameOfInputVar'];

    #get vars from post
    $nameOfInputVar = $_POST['nameOfInputVar'];

    //do stuff with vars
?>