<?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: Limit number of Applications</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Limit number of Applications</description>
<language>en</language>
<pubDate>Sun, 03 May 2026 20:40:37 +0000</pubDate>

<item>
<title>barb080M on "Limit number of Applications"</title>
<link>https://www.machform.com/forums/topic/limit-number-of-applications#post-23323</link>
<pubDate>Fri, 22 May 2015 12:36:59 +0000</pubDate>
<dc:creator>barb080M</dc:creator>
<guid isPermaLink="false">23323@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Is it possible to limit the use per user of the form? For example, person 1 can only access it 10 times and person 2 can access it 12 times and so on.
&#60;/p&#62;</description>
</item>
<item>
<title>Juan on "Limit number of Applications"</title>
<link>https://www.machform.com/forums/topic/limit-number-of-applications#post-14466</link>
<pubDate>Mon, 23 Apr 2012 22:50:57 +0000</pubDate>
<dc:creator>Juan</dc:creator>
<guid isPermaLink="false">14466@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thank you very much, I found it ! ;o)
&#60;/p&#62;</description>
</item>
<item>
<title>AMurray on "Limit number of Applications"</title>
<link>https://www.machform.com/forums/topic/limit-number-of-applications#post-14319</link>
<pubDate>Wed, 11 Apr 2012 05:07:23 +0000</pubDate>
<dc:creator>AMurray</dc:creator>
<guid isPermaLink="false">14319@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Juan.....this post is rather old (2 years...) and refers to a solution for Version 2 of Machform.&#60;/p&#62;
&#60;p&#62;If you have purchased Version 3 it makes this a lot simpler.&#60;/p&#62;
&#60;p&#62;Open the form, go to the Form properties (you may need to expand the 'more options' link) but there is an option there in the &#34;protect and limit&#34; options section - &#34;Limit submission - &#34;Maximum Accepted Entries : X&#34; where &#34;X&#34; is the number of entries the form  should accept before it shuts down / is disabled from accepting further entries.
&#60;/p&#62;</description>
</item>
<item>
<title>Juan on "Limit number of Applications"</title>
<link>https://www.machform.com/forums/topic/limit-number-of-applications#post-14316</link>
<pubDate>Wed, 11 Apr 2012 04:39:05 +0000</pubDate>
<dc:creator>Juan</dc:creator>
<guid isPermaLink="false">14316@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi thank you for your excellent product.&#60;br /&#62;
And if i have 4 forms with differents limits?&#60;br /&#62;
Form 1       20 entries&#60;br /&#62;
Form 2       50 entries&#60;br /&#62;
Form 3       15 entries&#60;br /&#62;
Form 4       12 entries&#60;/p&#62;
&#60;p&#62;Thabk you very much for your help
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "Limit number of Applications"</title>
<link>https://www.machform.com/forums/topic/limit-number-of-applications#post-7712</link>
<pubDate>Sat, 17 Oct 2009 11:08:14 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">7712@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;You can change the condition to be like this &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//limit the entries
if ($form_id == 1 &#124;&#124; $form_id == 2 &#124;&#124; $form_id == 3 &#124;&#124; $form_id == 4) {
	$query = &#38;quot;SELECT count(1) total_row FROM ap_form_{$form_id} &#38;quot;;
	$result = do_query($query);
	$row = do_fetch_result($result);

	if ($row[0] &#38;gt;= 20) {
		$process_result[&#38;#39;custom_error&#38;#39;] = &#38;#39;Sorry, this form limited to 20 entries.&#38;#39;;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;that code will applied for form 1,2,3,4
&#60;/p&#62;</description>
</item>
<item>
<title>primarytarget on "Limit number of Applications"</title>
<link>https://www.machform.com/forums/topic/limit-number-of-applications#post-7711</link>
<pubDate>Fri, 16 Oct 2009 22:01:35 +0000</pubDate>
<dc:creator>primarytarget</dc:creator>
<guid isPermaLink="false">7711@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Excellent! Thank you! What if I wanted to set this limit for multiple forms. For example, 4 different forms, where I wanted to limit the entries to 20?
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "Limit number of Applications"</title>
<link>https://www.machform.com/forums/topic/limit-number-of-applications#post-7686</link>
<pubDate>Thu, 15 Oct 2009 09:34:52 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">7686@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You need to do small customization for this, edit your &#34;post-functions.php&#34; file and go to around line 880, you'll see this code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$process_result[&#38;#39;error_elements&#38;#39;] = $error_elements;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;then add these code exactly bellow that line &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//limit the entries
if ($form_id == 2) {
	$query = &#38;quot;SELECT count(1) total_row FROM ap_form_{$form_id} &#38;quot;;
	$result = do_query($query);
	$row = do_fetch_result($result);

	if ($row[0] &#38;gt;= 20) {
		$process_result[&#38;#39;custom_error&#38;#39;] = &#38;#39;Sorry, this form limited to 3 entries.&#38;#39;;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;in there I set those logic only form id = 1, make sure you've change the ID with yours.
&#60;/p&#62;</description>
</item>
<item>
<title>ddubell on "Limit number of Applications"</title>
<link>https://www.machform.com/forums/topic/limit-number-of-applications#post-7683</link>
<pubDate>Thu, 15 Oct 2009 02:07:06 +0000</pubDate>
<dc:creator>ddubell</dc:creator>
<guid isPermaLink="false">7683@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Is there a way to limit the number of applications that will be accepted?  I only want to be able to accept 20 entries and want to have the form stop after that
&#60;/p&#62;</description>
</item>

</channel>
</rss>
