I basically have:
<form action="index.php" method="post">
<input name="text" type="text" value="Insert text here" size="20"/>
<input name="submit" type="submit" value="Submit" />
</form>
My PHP code then checks if submit is pressed:
if(isset($_POST['submit'])) {
$newDbValue = $_POST['text'];
$sql = ("
UPDATE `pseudo_tableName`
SET TEXT = '".$newDbValue."'
WHERE name = 'pseudo_fieldName' LIMIT 1
");
//SQL-query run by php function in separate class.
}
And as I understand it, if the form data is submitted it sends the user back to index.php?
But what mine does is it fails to update with new values and sends me back to index.php as if there was nothing wrong!
If I leave action="<?php $PHP_SELF; ?>" or action="" in the form, it updates when I reload the page (not F5 - click in address-line and hit enter).
What I want this to be: I hit submit, and it updates the DB, sends me to index.php.
How can this be achieved?
echo date("H:i:s", now()).'<pre>'.print_r($POST,true).'</pre>';to make sure the page you're seeing is actually the most recent version from the server including your form data. By the way,action="<?php $PHP_SELF; ?>"andaction=""will generate the same output, you probably mean<?php echo $_SERVER['PHP_SELF']; ?>– MightyE Feb 12 '11 at 16:27