I am passing form data from one page to another, and up until now the $_POST data was being sent without any problems. Now, even trying to echo out the $_POST data displays nothing. I've tried this basic code and I get nothing.
submit.html
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
</head>
<body>
<form method="post" action="echo.php">
<p>
<label for="url">URL</label>
<input type="text" name="url" />
</p>
<p>
<input type="submit" name="submit" value="Submit" />
</p>
</form>
</body>
</html>Code: Select all
<?php echo $_POST['url']; ?>Has anybody ever had this problem?