Closed
Bug 131996
Opened 24 years ago
Closed 24 years ago
view source isn't updated after a form post
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
People
(Reporter: protomank, Assigned: alexsavulov)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i586; en-US; rv:0.9.9+) Gecko/20020311
BuildID: 2002031121
If you use view source after a form post was done, mozilla keeps showing the
source of before the post.
I'm choosing severity as major because this IS a major problem for people
developing in PHP and using mozilla to debug.
Reproducible: Always
Steps to Reproduce:
1.go to url
2.view source
3.close view source window
4.click on send button
5. view source again
Actual Results: The second source is the same as the first one
Expected Results: The second source should be
"Now see the source again..."
not
"See this page source...<p>
<form method='POST'>
Type Anything here: <input type='text' name='texto'><br>
<input type='submit' name='action' value='Send'>
</form>"
The PHP code I used on my example:
<?php
if ($action == "") {
echo("
See this page source...<p>
<form method='POST'>
Type Anything here: <input type='text' name='texto'><br>
<input type='submit' name='action' value='Send'>
</form>
");
} else {
echo("Now see the source again...");
}
?>
Comment 1•24 years ago
|
||
*** This bug has been marked as a duplicate of 55583 ***
Status: UNCONFIRMED → RESOLVED
Closed: 24 years ago
Resolution: --- → DUPLICATE
Updated•7 years ago
|
Component: HTML: Form Submission → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•