<?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; Forum: HyperText Markup Language (HTML) - Recent Topics</title>
		<link>http://www.dudasprogramacion.com/forum/hypertext-markup-language-html</link>
		<description>Dudas sobre lenguajes y apis de programación</description>
		<language>en-US</language>
		<pubDate>Wed, 08 Feb 2012 21:05:03 +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/forum/hypertext-markup-language-html/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>Ari_lineadcodigo on "Crear Formularios dinámicos en javascript"</title>
			<link>http://www.dudasprogramacion.com/topic/crear-formularios-dinamicos-en-javascript#post-1012</link>
			<pubDate>Sun, 08 Jan 2012 23:33:34 +0000</pubDate>
			<dc:creator>Ari_lineadcodigo</dc:creator>
			<guid isPermaLink="false">1012@http://www.dudasprogramacion.com/</guid>
			<description><p>Bueno mi pregunta era como crear formularios dinámicos en javascript con las funciones que me mostrataron en linea de código.<br />
<a href="http://lineadecodigo.com/javascript/crear-elementos-html-con-javascript/" rel="nofollow">http://lineadecodigo.com/javascript/crear-elementos-html-con-javascript/</a></p>
<p>     Despues de investegar encontre cuales eran metodos que requeria dentro de mi función en javascript para lograr resolver mi problema pero ahora mi problema es el siguiente como obtengo el valor ingresado en la caja de texto que se genero dinámica mente por el usuario para despues guardarlo en una variable en php.</p>
<p>La función que cree en javascript es la siguiente:</p>
<pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;</span>SCRIPT type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> contador<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">function</span> poner<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
<span style="color: #003366; font-weight: bold;">var</span> lista <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;tipo&quot;</span><span style="color: #009900;">&#41;</span>
<span style="color: #003366; font-weight: bold;">var</span> valor <span style="color: #339933;">=</span> lista.<span style="color: #660066;">options</span><span style="color: #009900;">&#91;</span>lista.<span style="color: #660066;">selectedIndex</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">text</span>
<span style="color: #003366; font-weight: bold;">var</span> lugar <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;colocar_tipo&quot;</span><span style="color: #009900;">&#41;</span>
valor.<span style="color: #660066;">toString</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>valor<span style="color: #339933;">==</span><span style="color: #3366CC;">'Otro'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">38</span><span style="color: #339933;">;</span> contador<span style="color: #339933;">==</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	contador<span style="color: #339933;">++;</span>
<span style="color: #003366; font-weight: bold;">var</span> elemento <span style="color: #339933;">=</span> document.<span style="color: #660066;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'input'</span><span style="color: #009900;">&#41;</span>
elemento.<span style="color: #660066;">type</span><span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text&quot;</span>
elemento.<span style="color: #000066;">name</span><span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;ntipo&quot;</span>
elemento.<span style="color: #660066;">id</span><span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;ntipo&quot;</span>
ntipo
lugar.<span style="color: #660066;">appendChild</span><span style="color: #009900;">&#40;</span>elemento<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#125;</span><span style="color: #000066; font-weight: bold;">else</span><span style="color: #009900;">&#123;</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'colocar_tipo'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">innerHTML</span><span style="color: #339933;">=</span><span style="color: #3366CC;">''</span>
contador<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;/</span>SCRIPT<span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span></pre>
<p>Bueno en mi formulario la implemento en un select con el evento onchange</p>
<p>el código seria el siguiente:</p>
<pre class="php" style="font-family:monospace;"><span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;form id=&quot;form1&quot; name=&quot;form1&quot; method=&quot;POST&quot; action=&quot;&amp;#60;?php echo $editFormAction; ?&amp;#62;&amp;#60;?php echo $editFormAction; ?&amp;#62;&quot;&amp;#62;
</span>        <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;p&amp;#62;
</span>          <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;label for=&quot;select&quot;&amp;#62;Tipo:&amp;#60;/label&amp;#62;
</span>          <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;select name=&quot;tipo&quot; id=&quot;tipo&quot; onchange=&quot;poner()&quot;&amp;#62;
</span>            <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;option value=&quot;Zandalia&quot;&amp;#62;Zandalia&amp;#60;/option&amp;#62;
</span>            <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;option value=&quot;otro&quot;&amp;#62;Otro&amp;#60;/option&amp;#62;
</span>            <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;option value=&quot;Zapatos&quot; selected=&quot;selected&quot;&amp;#62;Zapatos&amp;#60;/option&amp;#62;
</span>            <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;option value=&quot;Tenis&quot;&amp;#62;Tenis&amp;#60;/option&amp;#62;
</span>          <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;/select&amp;#62;
</span>        <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;div id=&quot;colocar_tipo&quot;&amp;#62;&amp;#60;/div&amp;#62;</span></pre>
<p>Ahora quiero saber como sacar el valor de caja de texto que estoy creado en la función poner() la cual tiene el nombre de ntipo y guardarlo en una variable en php</p>
<p>Gracias de antemano por leer y darse un tiempo para intentar ayudarme
</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>Lobodemonte on "src enmascarado con variable ¿se puede?"</title>
			<link>http://www.dudasprogramacion.com/topic/src-enmascarado-con-variable-%c2%bfse-puede#post-940</link>
			<pubDate>Wed, 25 May 2011 23:45:05 +0000</pubDate>
			<dc:creator>Lobodemonte</dc:creator>
			<guid isPermaLink="false">940@http://www.dudasprogramacion.com/</guid>
			<description><p>Señores expertos:</p>
<p>Agradezco su cooperación en la siguiente pregunta:<br />
¿Puedo aplicar una variable llamada "foto1" que contenga una dirección como: img/photos/1.jpg a una línea como: </p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #ddbb00;">&amp;#60;</span>img src=&quot;img/photos/1.jpg&quot; width=620<span style="color: #ddbb00;">&amp;#62;</span></pre>
<p>Gracias de antemano.
</p></description>
		</item>
		<item>
			<title>yuli96 on "SUBIR VIDEOS A MI WEB(HTML)"</title>
			<link>http://www.dudasprogramacion.com/topic/subir-videos-a-mi-webhtml#post-821</link>
			<pubDate>Mon, 06 Dec 2010 20:14:27 +0000</pubDate>
			<dc:creator>yuli96</dc:creator>
			<guid isPermaLink="false">821@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola! bueno yo nunca antes he hecho una pagina web,hasta ahora q nos toca como examen de informatica,la estamos haciendo en html de bloc de notas, quiero subir un video,voy a youtube,pego el codigo embed en el html,y cuando entro a la pagina no me sale, m sale un cuadro transparente y ariba en la esquina superior derecha un cuadrito blanco, intente pegar el "embed" de otra pagina, pero me sale un cuadro negro que no repreoduce elvideo, y ariba en la esquina superior derecha m sale el mismo cuadrito blanco.Los codigos q pege fueron:</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #ddbb00;">&amp;#60;</span>iframe frameborder=&quot;0&quot; width=&quot;560&quot; height=&quot;314&quot; src=&quot;http://www.dailymotion.com/embed/video/xdilcu?width=560<span style="color: #ddbb00;">&amp;#38;</span>theme=none<span style="color: #ddbb00;">&amp;#38;</span>foreground=%23F7FFFD<span style="color: #ddbb00;">&amp;#38;</span>highlight=%23FFC300<span style="color: #ddbb00;">&amp;#38;</span>background=%23171D1B<span style="color: #ddbb00;">&amp;#38;</span>start=<span style="color: #ddbb00;">&amp;#38;</span>animatedTitle=<span style="color: #ddbb00;">&amp;#38;</span>iframe=1<span style="color: #ddbb00;">&amp;#38;</span>additionalInfos=0<span style="color: #ddbb00;">&amp;#38;</span>autoPlay=0<span style="color: #ddbb00;">&amp;#38;</span>hideInfos=0&quot;<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>/iframe<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>b<span style="color: #ddbb00;">&amp;#62;</span><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/video/xdilcu_justin-bieber-feat-jaden-smith-neve_music&quot;</span>&gt;</span>Justin Bieber (Feat. Jaden Smith)  Never Say Never<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span><span style="color: #ddbb00;">&amp;#60;</span>/b<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>i<span style="color: #ddbb00;">&amp;#62;</span>Cargado por <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/FDJC69&quot;</span>&gt;</span>FDJC69<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span>. - <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/mx/channel/music&quot;</span>&gt;</span>Videos de música, entrevistas a los artistas, conciertos y más.<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span><span style="color: #ddbb00;">&amp;#60;</span>/i<span style="color: #ddbb00;">&amp;#62;</span>
&nbsp;
<span style="color: #ddbb00;">&amp;#60;</span>iframe frameborder=&quot;0&quot; width=&quot;320&quot; height=&quot;179&quot; src=&quot;http://www.dailymotion.com/embed/video/xdilcu?width=320<span style="color: #ddbb00;">&amp;#38;</span>theme=none<span style="color: #ddbb00;">&amp;#38;</span>foreground=%23F7FFFD<span style="color: #ddbb00;">&amp;#38;</span>highlight=%23FFC300<span style="color: #ddbb00;">&amp;#38;</span>background=%23171D1B<span style="color: #ddbb00;">&amp;#38;</span>start=<span style="color: #ddbb00;">&amp;#38;</span>animatedTitle=<span style="color: #ddbb00;">&amp;#38;</span>iframe=1<span style="color: #ddbb00;">&amp;#38;</span>additionalInfos=0<span style="color: #ddbb00;">&amp;#38;</span>autoPlay=0<span style="color: #ddbb00;">&amp;#38;</span>hideInfos=0&quot;<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>/iframe<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>b<span style="color: #ddbb00;">&amp;#62;</span><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/video/xdilcu_justin-bieber-feat-jaden-smith-neve_music&quot;</span>&gt;</span>Justin Bieber (Feat. Jaden Smith)  Never Say Never<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span><span style="color: #ddbb00;">&amp;#60;</span>/b<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>i<span style="color: #ddbb00;">&amp;#62;</span>Cargado por <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/FDJC69&quot;</span>&gt;</span>FDJC69<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span>. - <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/mx/channel/music&quot;</span>&gt;</span>Videos de música, entrevistas a los artistas, conciertos y más.<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span><span style="color: #ddbb00;">&amp;#60;</span>/i<span style="color: #ddbb00;">&amp;#62;</span></pre>
<p>Luego intente subir el video directamente,como un archivo wmv, puse este codigo:</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;\Nueva carpeta\neversyanever.wmv&quot;</span>&gt;</span>NEVER SAY NEVER (69kb fichero WMV)<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span></pre>
<p>Y no funciona, ya nose q hacer! ayuda porfavor!y noc como pasarles la direccion de la web, porque aun la tengo en html, o nose muy bien como explicarlo pero la direccion viene siendo:F:\Nueva carpeta\mipagina.html<br />
Si puedn tambien diganme como ponerlo q sea una verdadera direccion web, GRACIAS
</p></description>
		</item>
		<item>
			<title>evelin on "Como colocar un hipervínculo en una pagina html"</title>
			<link>http://www.dudasprogramacion.com/topic/como-colocar-un-hipervinculo-en-una-pagina-html#post-777</link>
			<pubDate>Mon, 22 Nov 2010 20:40:37 +0000</pubDate>
			<dc:creator>evelin</dc:creator>
			<guid isPermaLink="false">777@http://www.dudasprogramacion.com/</guid>
			<description><p>Quiero colocar un hipervínculo al final de una página, en el lado izquierdo.<br />
Como hago para que aparezca allí?
</p></description>
		</item>
		<item>
			<title>evelin on "Como cargar una ventana nueva en un fichero html"</title>
			<link>http://www.dudasprogramacion.com/topic/como-cargar-una-ventana-nueva-en-un-fichero-html#post-778</link>
			<pubDate>Mon, 22 Nov 2010 21:10:30 +0000</pubDate>
			<dc:creator>evelin</dc:creator>
			<guid isPermaLink="false">778@http://www.dudasprogramacion.com/</guid>
			<description><p>El fichero tiene texto, pero al abrirse la página debe aparecer en la parte superior una nueva ventana pequeña que contiene un pequeño texto.<br />
A esta página se accede desde un hipervínculo de la página principal.<br />
No se si la función que crea a la ventana debo llamarla en la estructura del body, colocandole &#60;Body onload = "nombrefuncion()"&#62;, pero así no me funciona, como debo hacerlo?, la función ya la tengo hecha.<br />
No se si influye que ese fichero tiene que aparecer dentro de un frame de la página principal que es donde está el hipervínculo que lo llama.<br />
Por favor ayudadme.
</p></description>
		</item>
		<item>
			<title>anaz on "Validar contraseña para un espacio restringido"</title>
			<link>http://www.dudasprogramacion.com/topic/validar-contrasena-para-un-espacio-restringido#post-574</link>
			<pubDate>Wed, 04 Aug 2010 10:53:43 +0000</pubDate>
			<dc:creator>anaz</dc:creator>
			<guid isPermaLink="false">574@http://www.dudasprogramacion.com/</guid>
			<description><p>Mi pregunta es la siguiente:</p>
<p>quisiera restringir un espacio en mi página web. Para acceder a éste quisiera hacerlo a través de una contraseña (siempre la misma) que yo misma daría a aquellas personas que yo quiero que entren en ese espacio.</p>
<p>¿qué tipo de código necesito?</p>
<p>¿es ésto similar a un formulario que hay que validar y necesito que mi servidor me proporcione una URL?</p>
<p>Espero vuestra respuesta. Muchas gracias.</p>
<p>Anaz
</p></description>
		</item>
		<item>
			<title>cheeba on "Frames y Tablas"</title>
			<link>http://www.dudasprogramacion.com/topic/frames-y-tablas#post-525</link>
			<pubDate>Mon, 21 Jun 2010 14:18:41 +0000</pubDate>
			<dc:creator>cheeba</dc:creator>
			<guid isPermaLink="false">525@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola, puedo poner un frame dentro de una tabla?<br />
sino, como puedo conseguir que mi web de tres frames quede centrada? y como le pongo un marco sin que por el hecho de tener frames quede partido (ese marco lo tengo en .gif)?<br />
como puedo poner un scroll en una celda de una tabla?
</p></description>
		</item>
		<item>
			<title>mrvlls on "Hora del Servidor"</title>
			<link>http://www.dudasprogramacion.com/topic/hora-del-servidor#post-504</link>
			<pubDate>Mon, 14 Jun 2010 09:12:28 +0000</pubDate>
			<dc:creator>mrvlls</dc:creator>
			<guid isPermaLink="false">504@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola </p>
<p>He usado el código que tienen para el tema de mostrar la hora del servidor de una pag. web <a href="http://lineadecodigo.com/asp/reloj-con-la-hora-del-servidor/" rel="nofollow">http://lineadecodigo.com/asp/reloj-con-la-hora-del-servidor/</a>, y lo he adaptado para mi página (un par de modificaciones de alguna variable, poca cosa). El caso es que el resultado que obtengo es NaN:NaN:NaN. Pero es más, copiando el código integro en una página en blanco y ejecutándolo me sale el mismo resultado que antes. </p>
<p>Me estoy volviendo loco y no sé como hacerlo, tengo hecho una prueba con otro código, pero el resultado es la hora de cada máquina cliente, y que por supuesto no me vale para el fin que estoy buscando. Si me pudieseis ayudar, os estaría muy agradecido, muchas gracias por todo y un saludo </p>
<p>Víctor Pizarro
</p></description>
		</item>
		<item>
			<title>jabnsg on "Ocultar un radio button sin comentarlo."</title>
			<link>http://www.dudasprogramacion.com/topic/ocultar-un-radio-button-sin-comentarlo#post-509</link>
			<pubDate>Wed, 16 Jun 2010 11:08:35 +0000</pubDate>
			<dc:creator>jabnsg</dc:creator>
			<guid isPermaLink="false">509@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola a todos.</p>
<p>Me gustaría en mi página web ocultar un radio button sin utilizar la sentencia &#60;!--- ---&#62;, sé que los espacios para rellenarlos se hacen con type="hidden", pero tengo la siguiente sentencia de código</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;radio&quot; value=&quot;1&quot; name=&quot;C1&quot; <span style="color: #ddbb00;">&amp;#60;</span>% Response.Write strC1%<span style="color: #ddbb00;">&amp;#62;&amp;#62;</span></pre>
<p>Alguién sabría como ocultar en mi página web este radio button??. Muchas Gracias. Un saludo.</p>
<p>JUAN ANTONIO BENITO
</p></description>
		</item>
		<item>
			<title>polojr on "Modificar muchos html en lote"</title>
			<link>http://www.dudasprogramacion.com/topic/modificar-muchos-html-en-lote#post-379</link>
			<pubDate>Tue, 27 Apr 2010 19:35:04 +0000</pubDate>
			<dc:creator>polojr</dc:creator>
			<guid isPermaLink="false">379@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola a todos.<br />
En primer lugar quiero felicitar el webmaster de la web por la generosidad que demuestra al ofrecer sus conocimientos a todo el mundo.</p>
<p>Me gustaría plantearos algo que quiero hacer, y que no sé como llevarlo a cabo. Si alguien sabe cómo o puede darme alguna directriz le estaría muy agradecido. </p>
<p>Seré breve:</p>
<p>Tengo una gran cantidad de páginas html, supongamos 2.000.<br />
Y tengo una lista de lineas de código en .txt, supongamos también 2000 lineas.</p>
<p>Lo que necesito es saber cómo puedo automatizar el trabajo de que se generen, a partir de las 2000 paginas &#34;origen&#34; otras 2000 &#34;destino&#34; en las que la única diferencia es:</p>
<p>1.html + linea 1 del txt ------&#62; 1.html (nueva html)<br />
2.html + linea 2 del txt ------&#62; 2.html (nueva html)<br />
....<br />
....<br />
....<br />
2000.html + linea 2000 del txt----&#62; 2000.html (nueva html)</p>
<p>En todos los casos la nueva línea se introduciría en el mismo sitio en las respectivas html, por ejemplo, en la línea 108 de las html origen o en algún punto indicado por etiquetas, por ejemplo antes del &#60;/body&#62;</p>
<p>He probado con varios programas que añaden un mismo código en lote a mucha html, pero no me sirve pues en mi caso el código a añadir es una linea distinta para cada html.</p>
<p>¿Es esto posible? Me ahorarría muchísimo trabajo, pues realmente no tengo 2000 html que modificar sino varios cientos de grupos entre 500 y 3000 html cada uno de esos grupos.</p>
<p>¡Gracias!<br />
Jose.
</p></description>
		</item>
		<item>
			<title>julitof on "añadir musica de fondo en mi web"</title>
			<link>http://www.dudasprogramacion.com/topic/anadir-musica-de-fondo-en-mi-web#post-376</link>
			<pubDate>Mon, 26 Apr 2010 09:27:18 +0000</pubDate>
			<dc:creator>julitof</dc:creator>
			<guid isPermaLink="false">376@http://www.dudasprogramacion.com/</guid>
			<description><p>como puedo poner musica en mi pagina web de forma que siempre este sonando como musica de fonfo?</p>
<p>gracias de antemano.
</p></description>
		</item>
		<item>
			<title>kefren on "Imagenes transparentes"</title>
			<link>http://www.dudasprogramacion.com/topic/imagenes-transparentes#post-342</link>
			<pubDate>Tue, 23 Mar 2010 23:43:11 +0000</pubDate>
			<dc:creator>kefren</dc:creator>
			<guid isPermaLink="false">342@http://www.dudasprogramacion.com/</guid>
			<description><p>Buen dia a todos por ahi.<br />
Mi pregunta es la siguiente:<br />
Como se le hace para que aparezca una foto pero que tenga el fondo de la pagina, he visto por ejemplo el pinguino de linux en algunas paginas y se muestra solo el pinguino pero si guardo la imagen y la abro en Paint veo que tiene fondo blanco.
</p></description>
		</item>
		<item>
			<title>ariel on "imagen de fondo"</title>
			<link>http://www.dudasprogramacion.com/topic/imagen-de-fondo#post-291</link>
			<pubDate>Sun, 03 Jan 2010 18:26:54 +0000</pubDate>
			<dc:creator>ariel</dc:creator>
			<guid isPermaLink="false">291@http://www.dudasprogramacion.com/</guid>
			<description><p>se puede hacer que una imagen de fondo se vea centrada y a la ves estatica
</p></description>
		</item>
		<item>
			<title>jabnsg on "color de un radio button"</title>
			<link>http://www.dudasprogramacion.com/topic/color-de-un-radio-button#post-288</link>
			<pubDate>Thu, 31 Dec 2009 12:45:03 +0000</pubDate>
			<dc:creator>jabnsg</dc:creator>
			<guid isPermaLink="false">288@http://www.dudasprogramacion.com/</guid>
			<description><p>Tengo en mi página html una serie de radio buttons con el fondo en blanco, me gustaría que el fondo fuese amarillo y no blanco.</p>
<p>Alguien sabe como cambiar el color del botón en sí, no el color del fondo de la página. Muchas Gracias. Un saludo
</p></description>
		</item>

	</channel>
</rss>

