I have a dynamic form that i am creating in php then i have a static button after that. However, the button is appearing on top of the dynamic form.
The code for the button is simple, it is :
echo "<input type=\"submit\" value=\"Click here\" />
</table></form>";
but i don't understand why does the button appear on the top of the form instead of appearing on the bottom even though its code is after the php code for creating the form, is there anything i could test or do to change that?