<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>MachForm Community Forums Topic: How to make forms in Form Manager to be shown in ascending order</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: How to make forms in Form Manager to be shown in ascending order</description>
<language>en</language>
<pubDate>Tue, 05 May 2026 19:38:24 +0000</pubDate>

<item>
<title>gluk on "How to make forms in Form Manager to be shown in ascending order"</title>
<link>https://www.machform.com/forums/topic/how-to-make-forms-in-form-manager-to-be-shown-in-ascending-order#post-7894</link>
<pubDate>Mon, 09 Nov 2009 15:10:42 +0000</pubDate>
<dc:creator>gluk</dc:creator>
<guid isPermaLink="false">7894@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Marvelous! :-)&#60;br /&#62;
Thank you!
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "How to make forms in Form Manager to be shown in ascending order"</title>
<link>https://www.machform.com/forums/topic/how-to-make-forms-in-form-manager-to-be-shown-in-ascending-order#post-7893</link>
<pubDate>Mon, 09 Nov 2009 13:14:15 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">7893@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;You need some modification in &#34;manage_form.php&#34; again then, try to follow these steps :&#60;/p&#62;
&#60;p&#62;1. Go to line 435 and you'll see this code &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$i=($pageno -1) * $rows_per_page + 1;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;put this code exactly bellow that line &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$form_no = $numrows - (($pageno -1 ) * $rows_per_page)  ;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2. Go to line 460 and you'll see this code : &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h3&#38;gt;&#38;lt;?php echo &#38;quot;$i.&#38;amp;nbsp; {$data[&#38;#39;form_name&#38;#39;]}&#38;quot; ?&#38;gt;&#38;lt;/h3&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;change it to &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h3&#38;gt;&#38;lt;?php echo &#38;quot;$form_no.&#38;amp;nbsp; {$data[&#38;#39;form_name&#38;#39;]}&#38;quot; ?&#38;gt;&#38;lt;/h3&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;3. Go to line 508, you'll see this &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$i++;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;put this code bellow that line&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$form_no--;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>gluk on "How to make forms in Form Manager to be shown in ascending order"</title>
<link>https://www.machform.com/forums/topic/how-to-make-forms-in-form-manager-to-be-shown-in-ascending-order#post-7891</link>
<pubDate>Mon, 09 Nov 2009 02:42:57 +0000</pubDate>
<dc:creator>gluk</dc:creator>
<guid isPermaLink="false">7891@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thank you redityo!&#60;br /&#62;
Do you have idea how to change also a sequence number in left side of this line to ascending order?
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "How to make forms in Form Manager to be shown in ascending order"</title>
<link>https://www.machform.com/forums/topic/how-to-make-forms-in-form-manager-to-be-shown-in-ascending-order#post-7886</link>
<pubDate>Sun, 08 Nov 2009 11:58:45 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">7886@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Yes .. you can do small changes in &#34;manage_form.php&#34;, edit the file and go to line 26 and 105, you'll see these SQL:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$query  = &#38;quot;select form_id from &#38;lt;code&#38;gt;ap_forms&#38;lt;/code&#38;gt; order by form_id asc&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$query = &#38;quot;select form_id,form_name,form_active,form_email from &#38;lt;code&#38;gt;ap_forms&#38;lt;/code&#38;gt; order by form_id asc $limit&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;in there you can see the order is ascending, simply change the order to descending to be like this &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$query  = &#38;quot;select form_id from &#38;lt;code&#38;gt;ap_forms&#38;lt;/code&#38;gt; order by form_id desc&#38;quot;; 

$query = &#38;quot;select form_id,form_name,form_active,form_email from &#38;lt;code&#38;gt;ap_forms&#38;lt;/code&#38;gt; order by form_id desc $limit&#38;quot;;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>gluk on "How to make forms in Form Manager to be shown in ascending order"</title>
<link>https://www.machform.com/forums/topic/how-to-make-forms-in-form-manager-to-be-shown-in-ascending-order#post-7884</link>
<pubDate>Sun, 08 Nov 2009 08:41:20 +0000</pubDate>
<dc:creator>gluk</dc:creator>
<guid isPermaLink="false">7884@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;I'm pretty new in this forum as well as in using of MachForm. So naturally I'll ask a lot of questions.&#60;br /&#62;
But first, I would like to say that MachForm is very nice application. I like it.&#60;br /&#62;
Kudos to Appnitro!&#60;/p&#62;
&#60;p&#62;Now back to the business:&#60;br /&#62;
The question is - How to make forms in Form Manager to be shown in ascending order?&#60;br /&#62;
Currently the order is descending. The last created form created below. I would like to change this order i.e. to see the last created form above.&#60;br /&#62;
That should be some minor change in code.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
