This forum is no longer open and is for reading/searching only.
Please use our new MachForm Community Forum instead.
MachForm Community Forums » MachForm 2
Displaying newest form first in admin
Started 16 years ago by forestis | 2 posts |
-
Hello,
Is it possible to display the newest form first and the oldest displayed last in the Admin area?
Thanks
ThomasPosted 16 years ago # -
Try this,
Edit your manage_form.php file, search around line 66 you'll find this code:
$query = "select form_id,form_name,form_active,form_email from ap_forms order by form_id asc $limit";
change that line into:$query = "select form_id,form_name,form_active,form_email from ap_forms order by form_id desc $limit";
that should change the order of your forms.MachForm Founder
Posted 16 years ago #
Reply
You must log in to post.