$_POST not working
Posted: Sun Sep 12, 2010 10:20 pm
Hi,
I've got a form which submits a bunch of fields and on the following page I'm trying to use those values to update the database. However, I cannot get it to work for some reason. Here's my code:
Do I need to set anything up to enable this $_POST feature to work?
Cheers,
Kieran.
I've got a form which submits a bunch of fields and on the following page I'm trying to use those values to update the database. However, I cannot get it to work for some reason. Here's my code:
Code: Select all
<?php
$price=$_POST['price'];
echo $price;
?>Cheers,
Kieran.