what you have written in delete_user.php file...
And your div tag is not closed properly..
Post delete_user.php file data..
Shanti C
Posting Virtuoso
1,642 posts since Jul 2008
Reputation Points: 137
Solved Threads: 162
see here , you have started a div like this :
<body>
<form action="delete_user.php" method ="post">
<div id="main">
But You have to Ends it like
</div></form></body>
Instead of
</form>
</body>
</div>
Shanti C
Posting Virtuoso
1,642 posts since Jul 2008
Reputation Points: 137
Solved Threads: 162
Thank you for pointing out the error I didn't even see.
Everything seemed to work properly the way that I had it before, so I guess my question is...is it just good practice to close them in the reverse order you opened them, or does it really make a difference that just didn't happen to appear in this particular instance?
Thank you again
- Jim
It's not that it's "good practice." That's the right way to do it, it's like asking if you should put semicolons at the end of your line. It's how HTML/XML works.
blah blah = TagOpen CONTAINS innertag CONTAINS text
NOT
blah blah = TagOpen CONTAINS START innertag CONTAINS text, END TagOpen
ShawnCplus
Code Monkey
1,583 posts since Apr 2005
Reputation Points: 526
Solved Threads: 268