<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Add customers phone to the contact us form in osCommerce</title>
	<atom:link href="http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/feed/" rel="self" type="application/rss+xml" />
	<link>http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/</link>
	<description>lets talk about osCommerce</description>
	<lastBuildDate>Tue, 07 Apr 2020 11:18:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: multimixer</title>
		<link>http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/#comment-1349</link>
		<dc:creator>multimixer</dc:creator>
		<pubDate>Fri, 04 Apr 2014 10:45:46 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=383#comment-1349</guid>
		<description>Hi Johann

You need to validate the field before processing the form submission

You could take a look at create_account.php to see how it is done there</description>
		<content:encoded><![CDATA[<p>Hi Johann</p>
<p>You need to validate the field before processing the form submission</p>
<p>You could take a look at create_account.php to see how it is done there</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johann</title>
		<link>http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/#comment-1342</link>
		<dc:creator>Johann</dc:creator>
		<pubDate>Tue, 01 Apr 2014 09:38:18 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=383#comment-1342</guid>
		<description>If it was not for multimixer, oscommerce would be in trouble. Thanks for sharing your valuable knowledge George!

If one would like to make the contact number compulsory - do you perhaps have any information on how to do this?

Regards, Johann (South Africa)</description>
		<content:encoded><![CDATA[<p>If it was not for multimixer, oscommerce would be in trouble. Thanks for sharing your valuable knowledge George!</p>
<p>If one would like to make the contact number compulsory &#8211; do you perhaps have any information on how to do this?</p>
<p>Regards, Johann (South Africa)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: multimixer</title>
		<link>http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/#comment-1158</link>
		<dc:creator>multimixer</dc:creator>
		<pubDate>Tue, 04 Jun 2013 05:13:12 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=383#comment-1158</guid>
		<description>James,

It is very easy to create a drop down menu and place it to anywhere you want. I&#039;ll make a new post about this soon.

There is also a forum topic that explain this: http://forums.oscommerce.com/topic/342527-how-to-create-a-drop-down-selection-menu/</description>
		<content:encoded><![CDATA[<p>James,</p>
<p>It is very easy to create a drop down menu and place it to anywhere you want. I&#8217;ll make a new post about this soon.</p>
<p>There is also a forum topic that explain this: <a href="http://forums.oscommerce.com/topic/342527-how-to-create-a-drop-down-selection-menu/" rel="nofollow">http://forums.oscommerce.com/topic/342527-how-to-create-a-drop-down-selection-menu/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/#comment-1157</link>
		<dc:creator>James</dc:creator>
		<pubDate>Mon, 03 Jun 2013 22:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=383#comment-1157</guid>
		<description>https://gist.github.com/anonymous/5701866
another try to display the code that I use to call teh pull_down (there should be a preview funtion... would have helped to avoid extra posts for dummies like me)</description>
		<content:encoded><![CDATA[<p><a href="https://gist.github.com/anonymous/5701866" rel="nofollow">https://gist.github.com/anonymous/5701866</a><br />
another try to display the code that I use to call teh pull_down (there should be a preview funtion&#8230; would have helped to avoid extra posts for dummies like me)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/#comment-1155</link>
		<dc:creator>James</dc:creator>
		<pubDate>Mon, 03 Jun 2013 21:52:46 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=383#comment-1155</guid>
		<description>I&#039;m fighting with a drop-down list that I added to a modified contact_us file. the input_fields work fine (thanks for the tut), but the pull_down just won&#039;t.

Here&#039;s the code

$duration = tep_db_prepare_input($HTTP_POST_VARS[&#039;duration&#039;]);

  $duration_array = array();
  $duration_array[] = array(&#039;id&#039; =&gt; &#039;0&#039;, &#039;text&#039; =&gt; &#039;12 Monate&#039;);
  $duration_array[] = array(&#039;id&#039; =&gt; &#039;1&#039;, &#039;text&#039; =&gt; &#039;24 Monate&#039;);
  $duration_array[] = array(&#039;id&#039; =&gt; &#039;2&#039;, &#039;text&#039; =&gt; &#039;36 Monate&#039;);




What&#039;s it&#039;s supposed to do? Show a pull_down_list with 3 selections. Customer selects one and I get it emailed to me when he hits submit.

$duration gives me the variable for the email output
the $array should be good too, I followed the requirements for the tep_draw_form function.

Now for some reason the website shows an empty pull down list (no default and no selectors)

Any ideas?</description>
		<content:encoded><![CDATA[<p>I&#8217;m fighting with a drop-down list that I added to a modified contact_us file. the input_fields work fine (thanks for the tut), but the pull_down just won&#8217;t.</p>
<p>Here&#8217;s the code</p>
<p>$duration = tep_db_prepare_input($HTTP_POST_VARS['duration']);</p>
<p>  $duration_array = array();<br />
  $duration_array[] = array(&#8216;id&#8217; =&gt; &#8217;0&#8242;, &#8216;text&#8217; =&gt; &#8217;12 Monate&#8217;);<br />
  $duration_array[] = array(&#8216;id&#8217; =&gt; &#8217;1&#8242;, &#8216;text&#8217; =&gt; &#8217;24 Monate&#8217;);<br />
  $duration_array[] = array(&#8216;id&#8217; =&gt; &#8217;2&#8242;, &#8216;text&#8217; =&gt; &#8217;36 Monate&#8217;);</p>
<p>What&#8217;s it&#8217;s supposed to do? Show a pull_down_list with 3 selections. Customer selects one and I get it emailed to me when he hits submit.</p>
<p>$duration gives me the variable for the email output<br />
the $array should be good too, I followed the requirements for the tep_draw_form function.</p>
<p>Now for some reason the website shows an empty pull down list (no default and no selectors)</p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: multimixer</title>
		<link>http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/#comment-1142</link>
		<dc:creator>multimixer</dc:creator>
		<pubDate>Mon, 27 May 2013 05:44:15 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=383#comment-1142</guid>
		<description>You can if you want, question here is what to validate exactly? You can check if there is anything typed in, if the entry has a minimum length etc

Don&#039;t know how you could check if the entry is a real and valid phone number</description>
		<content:encoded><![CDATA[<p>You can if you want, question here is what to validate exactly? You can check if there is anything typed in, if the entry has a minimum length etc</p>
<p>Don&#8217;t know how you could check if the entry is a real and valid phone number</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bunhin</title>
		<link>http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/#comment-1140</link>
		<dc:creator>bunhin</dc:creator>
		<pubDate>Mon, 27 May 2013 05:12:40 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=383#comment-1140</guid>
		<description>do we need to check or validate on the input to the added field? in this case the phone field?</description>
		<content:encoded><![CDATA[<p>do we need to check or validate on the input to the added field? in this case the phone field?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alain</title>
		<link>http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/#comment-254</link>
		<dc:creator>Alain</dc:creator>
		<pubDate>Mon, 11 Jul 2011 17:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=383#comment-254</guid>
		<description>Hi,
I&#039;m trying to add informations on the contact page under the contact form.
I&#039;d like to add adress, phone etc. and also a script from googlemaps.

I have version 2.3.1

thanks for help.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;m trying to add informations on the contact page under the contact form.<br />
I&#8217;d like to add adress, phone etc. and also a script from googlemaps.</p>
<p>I have version 2.3.1</p>
<p>thanks for help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stefan</title>
		<link>http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/#comment-230</link>
		<dc:creator>stefan</dc:creator>
		<pubDate>Sun, 19 Jun 2011 06:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=383#comment-230</guid>
		<description>Did it. If anyone is intrested: 

 &#039;6&#039;, &#039;text&#039; =&gt; &#039;Bentley&#039;);
$model[] = array(&#039;id&#039; =&gt; &#039;7&#039;, &#039;text&#039; =&gt; &#039;BMW&#039;);
$model[] = array(&#039;id&#039; =&gt; &#039;8&#039;, &#039;text&#039; =&gt; &#039;Bugatti&#039;);
$model[] = array(&#039;id&#039; =&gt; &#039;9&#039;, &#039;text&#039; =&gt; &#039;Buick&#039;);
 ?&gt;

 
 		
		

and all the other lines Multimixer said. 
Hope this help.</description>
		<content:encoded><![CDATA[<p>Did it. If anyone is intrested: </p>
<p> &#8217;6&#8242;, &#8216;text&#8217; =&gt; &#8216;Bentley&#8217;);<br />
$model[] = array(&#8216;id&#8217; =&gt; &#8217;7&#8242;, &#8216;text&#8217; =&gt; &#8216;BMW&#8217;);<br />
$model[] = array(&#8216;id&#8217; =&gt; &#8217;8&#8242;, &#8216;text&#8217; =&gt; &#8216;Bugatti&#8217;);<br />
$model[] = array(&#8216;id&#8217; =&gt; &#8217;9&#8242;, &#8216;text&#8217; =&gt; &#8216;Buick&#8217;);<br />
 ?&gt;</p>
<p>and all the other lines Multimixer said.<br />
Hope this help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stefan</title>
		<link>http://multimixer.gr/26/11/2010/add-customers-phone-to-the-contact-us-form-in-oscommerce/#comment-229</link>
		<dc:creator>stefan</dc:creator>
		<pubDate>Fri, 17 Jun 2011 19:53:35 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=383#comment-229</guid>
		<description>Hi. Can you show us please how to add a drop down list to a field in this form? 
Thx!</description>
		<content:encoded><![CDATA[<p>Hi. Can you show us please how to add a drop down list to a field in this form?<br />
Thx!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
