<?xml version="1.0" encoding="UTF-8"?><!-- 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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
>
	<channel>
		<title>Dudas de Programacion &#187; Tag: formulario - Recent Posts</title>
		<link>http://www.dudasprogramacion.com/tags/formulario</link>
		<description>Dudas sobre lenguajes y apis de programación</description>
		<language>en-US</language>
		<pubDate>Tue, 07 Feb 2012 22:19:21 +0000</pubDate>
		<generator>bbpress 1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.dudasprogramacion.com/search.php</link>
		</textInput>
		<atom:link href="http://www.dudasprogramacion.com/rss/tags/formulario" rel="self" type="application/rss+xml" />

		<item>
			<title>lineadecodigo on "como enviar un formulario hecho con javascript"</title>
			<link>http://www.dudasprogramacion.com/topic/como-enviar-un-formulario-hecho-con-javascript#post-962</link>
			<pubDate>Wed, 07 Sep 2011 10:02:01 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">962@http://www.dudasprogramacion.com/</guid>
			<description><p>@cipilusca,</p>
<p>Si lo quieres enviar directamente en HTML tienes que poner el atributo name con un valor dentro de los campos input.</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #ddbb00;">&amp;#60;</span>input name=&quot;precioplatanos&quot; value=&quot;&quot;/<span style="color: #ddbb00;">&amp;#62;</span></pre>
<p>Tienes un ejemplo de envío en <a href="http://lineadecodigo.com/html/enviar-emails-desde-una-pagina-web/" rel="nofollow">http://lineadecodigo.com/html/enviar-emails-desde-una-pagina-web/</a></p>
<p>Espero que esto te vaya ayudando.
</p></description>
		</item>
		<item>
			<title>cipilusca on "como enviar un formulario hecho con javascript"</title>
			<link>http://www.dudasprogramacion.com/topic/como-enviar-un-formulario-hecho-con-javascript#post-956</link>
			<pubDate>Sun, 21 Aug 2011 17:57:50 +0000</pubDate>
			<dc:creator>cipilusca</dc:creator>
			<guid isPermaLink="false">956@http://www.dudasprogramacion.com/</guid>
			<description><p>Tengo el siguiente formulario de productos con los precios, subtotales y total final y quiero enviar la informacion para que me llegue a mi mail par ver lo que ha pedido el cliente. Podrian ayudarme a insertar el boton de envio que recopile toda la informacion sobre el producto elegido, la cantidad y el precio final. Este es el codigo donde he insertado un boton Enviar pero no me llega nada en el mail, me llega vacio.</p>
<pre class="html4strict" style="font-family:monospace;">&nbsp;
<span style="color: #ddbb00;">&amp;#60;</span>form action=&quot;mailto:pedidos@frescoysabroso.es&quot; method=&quot;get&quot; enctype=&quot;text/plain&quot;<span style="color: #ddbb00;">&amp;#62;</span>
&nbsp;
<span style="color: #ddbb00;">&amp;#60;</span>table width=&quot;620&quot; height=&quot;319&quot;<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td width=&quot;168&quot;<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td width=&quot;92&quot;<span style="color: #ddbb00;">&amp;#62;</span>Cantidad<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td width=&quot;106&quot;<span style="color: #ddbb00;">&amp;#62;</span>Precio<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td width=&quot;327&quot;<span style="color: #ddbb00;">&amp;#62;</span>Total<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Platanos<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;platanos&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,precioplatanos.value,totalplatanos,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;precioplatanos&quot; value=&quot;1.6&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
1,6<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalplatanos&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
€ <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Manzanas<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;manzanas&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomanzanas.value,totalmanzanas,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomanzanas&quot; value=&quot;3&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
3 <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmanzanas&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
€ <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Peras<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;peras&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,precioperas.value,totalperas,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;precioperas&quot; value=&quot;2&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
2<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalperas&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
€ <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Uvas<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;uvas&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciouvas.value,totaluvas,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciouvas&quot; value=&quot;9&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
9<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totaluvas&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
€ <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Melón<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;melon&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomelon.value,totalmelon,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
pieza<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomelon&quot; value=&quot;4&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
  4  <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmelon&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>€<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Melocotones<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;melocotones2&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomelocotones.value,totalmelocotones,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomelocotones2&quot; value=&quot;5&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
    5<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmelocotones2&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
    €<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Melocotones<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;melocotones3&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomelocotones.value,totalmelocotones,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomelocotones3&quot; value=&quot;5&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
    5<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmelocotones3&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
    €<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Melocotones<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;melocotones4&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomelocotones.value,totalmelocotones,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomelocotones4&quot; value=&quot;5&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
    5<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmelocotones4&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
    €<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Melocotones<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;melocotones5&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomelocotones.value,totalmelocotones,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomelocotones5&quot; value=&quot;5&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
    5<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmelocotones5&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
    €<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Cebolla<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;cebolla&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciocebolla.value,totalcebolla,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciocebolla&quot; value=&quot;0.5&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
    0,50<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalcebolla&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
    €<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Total<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; id=&quot;total&quot; size=&quot;8&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
€<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/table<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>p<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>label<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;submit&quot; name=&quot;enviar&quot; id=&quot;enviar&quot; value=&quot;Enviar&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>/label<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/p<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/form<span style="color: #ddbb00;">&amp;#62;</span></pre></description>
		</item>
		<item>
			<title>victor011092 on "llamar form desde un jframe"</title>
			<link>http://www.dudasprogramacion.com/topic/llamar-form-desde-un-jframe#post-951</link>
			<pubDate>Wed, 15 Jun 2011 23:28:52 +0000</pubDate>
			<dc:creator>victor011092</dc:creator>
			<guid isPermaLink="false">951@http://www.dudasprogramacion.com/</guid>
			<description><p>buenas , tengo estoy haciendo un sistema (en netbeans y xampp) final para una materia , la cosa es de que si puedo llamar desde un jframe con un boton ,un formulario<br />
quiero que del jframe(menu) me abra un formulario de clientes<br />
saludos!
</p></description>
		</item>
		<item>
			<title>fiurer87 on "Formulario de contacto"</title>
			<link>http://www.dudasprogramacion.com/topic/formulario-de-contacto#post-845</link>
			<pubDate>Sun, 26 Dec 2010 21:35:43 +0000</pubDate>
			<dc:creator>fiurer87</dc:creator>
			<guid isPermaLink="false">845@http://www.dudasprogramacion.com/</guid>
			<description><p>Mira este link<br />
<a href="http://www.programadorez.com/foros/viewtopic.php?f=16&#038;t=35" rel="nofollow">http://www.programadorez.com/foros/viewtopic.php?f=16&#038;t=35</a>
</p></description>
		</item>
		<item>
			<title>k1r02 on "Formulario de contacto"</title>
			<link>http://www.dudasprogramacion.com/topic/formulario-de-contacto#post-838</link>
			<pubDate>Wed, 15 Dec 2010 16:18:25 +0000</pubDate>
			<dc:creator>k1r02</dc:creator>
			<guid isPermaLink="false">838@http://www.dudasprogramacion.com/</guid>
			<description><p>al momento de finalizar todo lo que haces al enviar la información al PHP puedes utilizar 2 formas para redireccionar a otra pagina web de tu sitio o externo.</p>
<p>1.- PHP<br />
	   ob_start();<br />
	   header("Location: index.php");<br />
	   ob_end_flush();</p>
<p>2.- Javascrip</p>
<p>&#60;script language="javascript" type="text/javascript"&#62;<br />
location.href="www.misitio.com/inicio.html";<br />
    &#60;/script&#62;
</p></description>
		</item>
		<item>
			<title>lineadecodigo on "Formulario de contacto"</title>
			<link>http://www.dudasprogramacion.com/topic/formulario-de-contacto#post-835</link>
			<pubDate>Wed, 15 Dec 2010 00:50:53 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">835@http://www.dudasprogramacion.com/</guid>
			<description><p>@estril7,</p>
<p>Comparte tu código para que podamos ayudarte.
</p></description>
		</item>
		<item>
			<title>estril7 on "Formulario de contacto"</title>
			<link>http://www.dudasprogramacion.com/topic/formulario-de-contacto#post-818</link>
			<pubDate>Sun, 05 Dec 2010 00:08:48 +0000</pubDate>
			<dc:creator>estril7</dc:creator>
			<guid isPermaLink="false">818@http://www.dudasprogramacion.com/</guid>
			<description><p>tengo un fomrulariod e contacto php, que utilizo apra una pagina en html, </p>
<p>el formulario funciona perfecto, el problema uqe tengo es que cuando envia la informacion se traslada a una pagina en blanco y no puedo volver a la pagina donde esta el formulario</p>
<p>Alguien me oddria ayudar con esta situacion???
</p></description>
		</item>
		<item>
			<title>fiurer87 on "ENVIAR UN FORMULARIO VARIAS VECES CON UN CLICK"</title>
			<link>http://www.dudasprogramacion.com/topic/enviar-un-formulario-varias-veces-con-un-click#post-406</link>
			<pubDate>Tue, 18 May 2010 16:19:03 +0000</pubDate>
			<dc:creator>fiurer87</dc:creator>
			<guid isPermaLink="false">406@http://www.dudasprogramacion.com/</guid>
			<description><p>Segun te entiendo, quieres hacer N veces alguna accion con ciertos datos, y se trata de trabajar N veces con los datos y no asi enviar N veces los datos.</p>
<p>Debes reutilizar la informacion enviada, ya que el envio tarda mas que el procesamiento.</p>
<p>Ahora espero sea de mas ayuda
</p></description>
		</item>
		<item>
			<title>fiurer87 on "ENVIAR UN FORMULARIO VARIAS VECES CON UN CLICK"</title>
			<link>http://www.dudasprogramacion.com/topic/enviar-un-formulario-varias-veces-con-un-click#post-405</link>
			<pubDate>Tue, 18 May 2010 16:17:35 +0000</pubDate>
			<dc:creator>fiurer87</dc:creator>
			<guid isPermaLink="false">405@http://www.dudasprogramacion.com/</guid>
			<description><p>Ahora te dejare un ejemplo que al poner un determinado numero de veces, se hace algo con esa informacion N veces.</p>
<p>==========================================<br />
&#60;html&#62;<br />
&#60;body&#62;<br />
&#60;?php<br />
//Aqui hago lo que quiero con la informacion<br />
//enviar a BD o lo que sea, en este caso solo lo imprimire<br />
//siempre hara $numero veces la accion que desees<br />
$numero = $_POST['numero'];<br />
$nombre = $_POST['nombre'];<br />
$apellido = $_POST['apellido'];<br />
if(isset($numero)){<br />
	for($i=1;$i&#60;=$numero;$i++)<br />
		echo &#34;&#60;h2&#62;Datos [$i]: $nombre $apellido&#60;/h2&#62;&#34;;<br />
}<br />
?&#62;<br />
	&#60;form method=&#34;post&#34; target=&#34;_self&#34;&#62;<br />
	Nombre: &#60;input type=&#34;text&#34; name=&#34;nombre&#34; /&#62;<br />
	Apellido:&#60;input type=&#34;text&#34; name=&#34;apellido&#34; /&#62;<br />
	No Veces:&#60;input type=&#34;text&#34; name=&#34;numero&#34; /&#62;<br />
	&#60;input type=&#34;submit&#34; value=&#34;Enviar&#34; /&#62;<br />
	&#60;/form&#62;<br />
&#60;body&#62;<br />
&#60;/html&#62;<br />
==========================================
</p></description>
		</item>
		<item>
			<title>fiurer87 on "ENVIAR UN FORMULARIO VARIAS VECES CON UN CLICK"</title>
			<link>http://www.dudasprogramacion.com/topic/enviar-un-formulario-varias-veces-con-un-click#post-404</link>
			<pubDate>Tue, 18 May 2010 16:03:21 +0000</pubDate>
			<dc:creator>fiurer87</dc:creator>
			<guid isPermaLink="false">404@http://www.dudasprogramacion.com/</guid>
			<description><p>Espero eso sea justamente lo que buscas ... saludos
</p></description>
		</item>
		<item>
			<title>fiurer87 on "ENVIAR UN FORMULARIO VARIAS VECES CON UN CLICK"</title>
			<link>http://www.dudasprogramacion.com/topic/enviar-un-formulario-varias-veces-con-un-click#post-403</link>
			<pubDate>Tue, 18 May 2010 15:38:28 +0000</pubDate>
			<dc:creator>fiurer87</dc:creator>
			<guid isPermaLink="false">403@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola,<br />
Para hacer eso, te sugiero enviar la informacion a la misma pagina.<br />
&#60;form method=&#34;post&#34; target=&#34;_self&#34;&#62;<br />
Ahora te mando un ejemplo, en mi caso enviare NOMBRE y APELLIDO las veces que yo desee a mi misma pagina, asi evito estar yendo atras cada vez. De esta manera puedes enviar informacion las veces que desees.<br />
==========================================================================</p>
<p>&#60;html&#62;<br />
&#60;body&#62;<br />
&#60;?php<br />
//Aqui hago lo que quiero con la informacion<br />
//enviar a BD o lo que sea, en este caso solo lo imprimire<br />
$nombre = $_POST['nombre'];<br />
$apellido = $_POST['apellido'];<br />
echo &#34;&#60;h2&#62;Datos recibidos: $nombre $apellido&#60;/h2&#62;&#34;<br />
?&#62;<br />
	&#60;form method=&#34;post&#34; target=&#34;_self&#34;&#62;<br />
	Nombre: &#60;input type=&#34;text&#34; name=&#34;nombre&#34; /&#62;<br />
	Apellido:&#60;input type=&#34;text&#34; name=&#34;apellido&#34; /&#62;<br />
	&#60;input type=&#34;submit&#34; value=&#34;Enviar&#34; /&#62;<br />
	&#60;/form&#62;<br />
&#60;body&#62;<br />
&#60;/html&#62;<br />
=================================================<br />
Espero sea de ayuda.<br />
Atte: Luis Roberto
</p></description>
		</item>
		<item>
			<title>NumberOne on "ENVIAR UN FORMULARIO VARIAS VECES CON UN CLICK"</title>
			<link>http://www.dudasprogramacion.com/topic/enviar-un-formulario-varias-veces-con-un-click#post-402</link>
			<pubDate>Tue, 18 May 2010 14:16:02 +0000</pubDate>
			<dc:creator>NumberOne</dc:creator>
			<guid isPermaLink="false">402@http://www.dudasprogramacion.com/</guid>
			<description><p>pues yo keria hallar la forma de ke al pulsar el boton enviar de un formulario el click cuente como si fueran x veces (ke yo kiera)</p>
<p>hay ke enviar 4 datos para el ke digo yo: nombre,contraseña,dato1,dato2 y cada vez ke kiero por ejemplo enviar varias veces el mismo dato tengo ke darle al boton enviar,atras en el navegador y volver a darle a enviar y asi.</p>
<p>por ejemplo ke me aparezcan las 4 casillas como para enviar el formulario normal, y ke me aparezca una quinta casilla ke ponga &#34;NUMERO DE VECES A ENVIAR&#34; o algo asi y yo escribo un numero y ke al darle a enviar me lo envie esas veces (pero no digo ke me abra ese numero de ventanas sino ke ejecute el proceso sobre una misma ventana o sobre otra diferente ke se abra)</p>
<p>me aconsejaron ke lo hiciera en JavaScript con un bucle for que ejecute 5 submit, perono se como se hace. alguien me hecha una mano?
</p></description>
		</item>
		<item>
			<title>lineadecodigo on "Abrir Frame con un javascript"</title>
			<link>http://www.dudasprogramacion.com/topic/abrir-frame-con-un-javascript#post-364</link>
			<pubDate>Thu, 15 Apr 2010 21:50:17 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">364@http://www.dudasprogramacion.com/</guid>
			<description><p>¿Qué quieres decir llamarlo X veces? ¿Qué se llamen de forma consecutiva? ¿Dónde dejaría el resultado? ¿En X frames nuevos?</p>
<p>Danos más pistas.
</p></description>
		</item>
		<item>
			<title>JavierMMM on "Abrir Frame con un javascript"</title>
			<link>http://www.dudasprogramacion.com/topic/abrir-frame-con-un-javascript#post-361</link>
			<pubDate>Wed, 14 Apr 2010 15:13:39 +0000</pubDate>
			<dc:creator>JavierMMM</dc:creator>
			<guid isPermaLink="false">361@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola a todos. He estado rolando entre varios de los foros para poder tener respuestas a mis diferentes dudas [asp, php, html] (por si de pronto a alguién le suena este tema, pero es que ando enrollado con esto), pero ahora me viene una más.</p>
<p>En una página principal [home.php] tengo dos frames, uno que contiene un formulario para enviar un dato X [imp_datos.php] y orta para recibirlo y hacer algunos cálculos [proc_calc.php].</p>
<p>&#60;FRAMESET rows=&#34;35%,*&#34; &#62;<br />
    &#60;FRAME SRC=&#34;imp_datos.php&#34; name=&#34;enviar&#34; &#62;<br />
    &#60;FRAME SRC=&#34;proc_calc.php&#34; name=&#34;recibir&#34; noresize=&#34;noresize&#34;&#62;<br />
&#60;/FRAMESET&#62;</p>
<p>La cosa aquí, es que tengo que abrir eel frame proc_calc.php, las X veces que le mando desde el formulario que tengo en imp_datos.php.</p>
<p>Hasta ahora puedo hacerlo correcto, abriendo una sola vez proc_calc.php como normalmente se hace, pero para lograr hacer que se habrá X veces, me han sugerido que lo haga mediante de un script intermedio entre los dos frames, esto es, que con imp_datos.php llame a un script que a su vez, abra X veces el frame proc_calc.php.</p>
<p>La forma en que hago las cosas en este momento es la siguiente:</p>
<p>&#60;form name=&#34;form1&#34; method=&#34;POST&#34; action=&#34;proc_calc.php&#34; target=&#34;recibir&#34; &#62;<br />
   &#60;img src=&#34;php_captcha.php&#34;&#62; &#60;!--Tengo un script para generar un captcha--&#62;<br />
   Escribir cadena.<br />&#60;/td&#62;<br />
   &#60;input name=&#34;number&#34; type=&#34;text&#34; id=\&#34;number\&#34;&#62;<br />
   Número de exámenes.<br />&#60;/td&#62;<br />
   &#60;input type=&#34;text&#34; name=&#34;num&#34; id=&#34;text&#34; tabindex=&#34;0&#34; /&#62;<br />
   &#60;input name=&#34;Submit&#34; type=&#34;submit&#34; value=&#34;Consultar&#34; &#62;<br />
&#60;/form&#62;</p>
<p>pero como pueden notar, sólo se ejecuta una sola vez el segundo frame.</p>
<p>Espero haberme dado a entender y alguien tenga una ídea de cómo puedo hacer lo que quiero hacer.
</p></description>
		</item>
		<item>
			<title>jabali on "Dos submit en un formulario"</title>
			<link>http://www.dudasprogramacion.com/topic/dos-submit-en-un-formulario#post-153</link>
			<pubDate>Thu, 23 Jul 2009 18:22:45 +0000</pubDate>
			<dc:creator>jabali</dc:creator>
			<guid isPermaLink="false">153@http://www.dudasprogramacion.com/</guid>
			<description><p>Si yo tengo un formulario en el que tengo dos botones tipo submit:</p>
<p>&#60;input type=&#34;submit&#34; name=&#34;b1&#34; value=&#34;BOTON1&#34;&#62; y<br />
&#60;input type=&#34;submit&#34; name =&#34;b2&#34; value=&#34;BOTON2&#34;&#62;</p>
<p>¿Como hago luego para saber que boton se ha pulsado para, por ejemplo mandar a dos paginas diferentes la informacion o tratar esa informacion de manera diferente?
</p></description>
		</item>

	</channel>
</rss>

