Can not send get request. You must select one of the treasures or enter your price and send it using the get method, for now just to the address field.
<form action="" method="get"> <fieldset> <input type="button" name="price" value="500р"> <input type="button" name="price" value="1000р"> <input type="button" name="price" value="5000р"> <input type="text" name="other_price" placeholder="Своя цена"> <input type="submit" name="price_btn"> </fieldset> </form> Enter back down
<?php $_GET['price']; ?> What is the problem?
$_GET['price'];- this is a variable, you do not display it. You can display it viaecho $_GET['price'];- Mr Lucky Tomas