Mixing GET with POST - is it a bad practice?

Viewed 21323

Is it a bad practice to mix GET and POST? (note this is in PHP)

e.g.

<form action="delete.php?l=en&r=homepage" method="post">
 <!-- post fields here -->
</form>
3 Answers
Related