elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: (TUTORIAL) Aprende a emular Sentinel Dongle By Yapis


+  Foro de elhacker.net
|-+  Programación
| |-+  Desarrollo Web (Moderador: #!drvy)
| | |-+  Enviar formulario a web externa
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: Enviar formulario a web externa  (Leído 2,046 veces)
CeKiT

Desconectado Desconectado

Mensajes: 1


Ver Perfil
Enviar formulario a web externa
« en: 3 Julio 2012, 21:41 pm »

Buenas, les cuento lo que deseo hacer


En mi foro tengo una sección que se llama "noticias" y ahi solo puedo publicar yo que soy el adminitrador lo que estuve intentando es hacer un script externo a del foro que publique contenidos en "noticias" sin necesidad de entrar al foro, hasta ahora con este script
http://foro.elhacker.net/desarrollo_web/rellenar_campos_de_formularios_automaticamente_con_php-t137534.0.html
Logre rellenar los campos pero no lo envia osea:

Pongo www.midominio.com/relleno.php?primero=Noticia23/09/12&segundo=Noticia:Ninguna
hago que se envie automáticamente pero no funciona.

Mi foro es phpbb3 el codigo del formulario es:

Código:
<form id="postform" method="post" action="http://sawhost.net/foro/posting.php?mode=post&amp;f=2" enctype="multipart/form-data">



<div class="panel" id="postingbox">
<div class="inner"><span class="corners-top"><span></span></span>

<h3>Post a new topic</h3>

<script type="text/javascript">
// <![CDATA[
onload_functions.push('apply_onkeypress_event()');
// ]]>
</script>

<fieldset class="fields1">

<dl>
<dt><label for="icon">Topic icon:</label></dt>
<dd>
<label for="icon"><input type="radio" name="icon" id="icon" value="0" checked="checked"> None</label>
<label for="icon-1"><input type="radio" name="icon" id="icon-1" value="1"><img src="./images/icons/misc/fire.gif" width="16" height="16" alt="" title=""></label> <label for="icon-5"><input type="radio" name="icon" id="icon-5" value="5"><img src="./images/icons/misc/star.gif" width="16" height="16" alt="" title=""></label> <label for="icon-6"><input type="radio" name="icon" id="icon-6" value="6"><img src="./images/icons/misc/radioactive.gif" width="16" height="16" alt="" title=""></label> <label for="icon-4"><input type="radio" name="icon" id="icon-4" value="4"><img src="./images/icons/misc/heart.gif" width="16" height="16" alt="" title=""></label> <label for="icon-7"><input type="radio" name="icon" id="icon-7" value="7"><img src="./images/icons/misc/thinking.gif" width="16" height="16" alt="" title=""></label> <label for="icon-9"><input type="radio" name="icon" id="icon-9" value="9"><img src="./images/icons/smile/question.gif" width="16" height="16" alt="" title=""></label> <label for="icon-10"><input type="radio" name="icon" id="icon-10" value="10"><img src="./images/icons/smile/alert.gif" width="16" height="16" alt="" title=""></label> <label for="icon-8"><input type="radio" name="icon" id="icon-8" value="8"><img src="./images/icons/smile/info.gif" width="16" height="16" alt="" title=""></label> <label for="icon-2"><input type="radio" name="icon" id="icon-2" value="2"><img src="./images/icons/smile/redface.gif" width="16" height="16" alt="" title=""></label> <label for="icon-3"><input type="radio" name="icon" id="icon-3" value="3"><img src="./images/icons/smile/mrgreen.gif" width="16" height="16" alt="" title=""></label>
</dd>
</dl>

<dl style="clear: left;">
<dt><label for="subject">Subject:</label></dt>
<dd><input type="text" name="subject" id="subject" size="45" maxlength="60" tabindex="2" value="" class="inputbox autowidth"></dd>
</dl>
<script type="text/javascript">
// <![CDATA[
var form_name = 'postform';
var text_name = 'message';
var load_draft = false;
var upload = false;

// Define the bbCode tags
var bbcode = new Array();
var bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','
','
    ','
','[list=]','[/list]','','http://','','[flash=]', '[/flash]','[size=]','[/size]');
   var imageTag = false;

   // Helpline messages
   var help_line = {
      b: 'Bold text: text',
      i: 'Italic text: text',
      u: 'Underline text: text',
      q: 'Quote text:
Citar
text
',
      c: 'Code display:
Código:
code
',
      l: 'List:
    text
',
      o: 'Ordered list: [list=]text[/list]',
      p: 'Insert image: ',
      w: 'Insert URL: http://url or URL text',
      a: 'Inline uploaded attachment: [attachment=]filename.ext[/attachment]',
      s: 'Font colour: text  Tip: you can also use color=#FF0000',
      f: 'Font size: [size=85]small text[/size]',
      e: 'List: Add list element',
      d: 'Flash: [flash=width,height]http://url[/flash]'
      
   }

   var panels = new Array('options-panel', 'attach-panel', 'poll-panel');
   var show_panel = 'options-panel';


// ]]>
</script>
<script type="text/javascript" src="http://sawhost.net/foro/styles/prosilver/template/editor.js"></script>


<div id="colour_palette" style="display: none;">
   <dl style="clear: left;">
      <dt><label>Font colour:</label></dt>
      <dd>
      <script type="text/javascript">
      // <![CDATA[
         function change_palette()
         {
            dE('colour_palette');
            e = document.getElementById('colour_palette');
            
            if (e.style.display == 'block')
            {
               document.getElementById('bbpalette').value = 'Hide font colour';
            }
            else
            {
               document.getElementById('bbpalette').value = 'Font colour';
            }
         }

         colorPalette('h', 15, 10);
      // ]]>
      </script><table cellspacing="1" cellpadding="0" border="0">
<tbody><tr>
<td bgcolor="#000000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#000000" title="#000000"></a></td>
<td bgcolor="#000040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#000040" title="#000040"></a></td>
<td bgcolor="#000080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#000080" title="#000080"></a></td>
<td bgcolor="#0000BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#0000BF" title="#0000BF"></a></td>
<td bgcolor="#0000FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#0000FF" title="#0000FF"></a></td>
<td bgcolor="#004000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#004000" title="#004000"></a></td>
<td bgcolor="#004040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#004040" title="#004040"></a></td>
<td bgcolor="#004080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#004080" title="#004080"></a></td>
<td bgcolor="#0040BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#0040BF" title="#0040BF"></a></td>
<td bgcolor="#0040FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#0040FF" title="#0040FF"></a></td>
<td bgcolor="#008000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#008000" title="#008000"></a></td>
<td bgcolor="#008040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#008040" title="#008040"></a></td>
<td bgcolor="#008080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#008080" title="#008080"></a></td>
<td bgcolor="#0080BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#0080BF" title="#0080BF"></a></td>
<td bgcolor="#0080FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#0080FF" title="#0080FF"></a></td>
<td bgcolor="#00BF00" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#00BF00" title="#00BF00"></a></td>
<td bgcolor="#00BF40" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#00BF40" title="#00BF40"></a></td>
<td bgcolor="#00BF80" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#00BF80" title="#00BF80"></a></td>
<td bgcolor="#00BFBF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#00BFBF" title="#00BFBF"></a></td>
<td bgcolor="#00BFFF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#00BFFF" title="#00BFFF"></a></td>
<td bgcolor="#00FF00" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#00FF00" title="#00FF00"></a></td>
<td bgcolor="#00FF40" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#00FF40" title="#00FF40"></a></td>
<td bgcolor="#00FF80" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#00FF80" title="#00FF80"></a></td>
<td bgcolor="#00FFBF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#00FFBF" title="#00FFBF"></a></td>
<td bgcolor="#00FFFF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#00FFFF" title="#00FFFF"></a></td>
</tr>
<tr>
<td bgcolor="#400000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#400000" title="#400000"></a></td>
<td bgcolor="#400040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#400040" title="#400040"></a></td>
<td bgcolor="#400080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#400080" title="#400080"></a></td>
<td bgcolor="#4000BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#4000BF" title="#4000BF"></a></td>
<td bgcolor="#4000FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#4000FF" title="#4000FF"></a></td>
<td bgcolor="#404000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#404000" title="#404000"></a></td>
<td bgcolor="#404040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#404040" title="#404040"></a></td>
<td bgcolor="#404080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#404080" title="#404080"></a></td>
<td bgcolor="#4040BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#4040BF" title="#4040BF"></a></td>
<td bgcolor="#4040FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#4040FF" title="#4040FF"></a></td>
<td bgcolor="#408000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#408000" title="#408000"></a></td>
<td bgcolor="#408040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#408040" title="#408040"></a></td>
<td bgcolor="#408080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#408080" title="#408080"></a></td>
<td bgcolor="#4080BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#4080BF" title="#4080BF"></a></td>
<td bgcolor="#4080FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#4080FF" title="#4080FF"></a></td>
<td bgcolor="#40BF00" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#40BF00" title="#40BF00"></a></td>
<td bgcolor="#40BF40" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#40BF40" title="#40BF40"></a></td>
<td bgcolor="#40BF80" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#40BF80" title="#40BF80"></a></td>
<td bgcolor="#40BFBF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#40BFBF" title="#40BFBF"></a></td>
<td bgcolor="#40BFFF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#40BFFF" title="#40BFFF"></a></td>
<td bgcolor="#40FF00" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#40FF00" title="#40FF00"></a></td>
<td bgcolor="#40FF40" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#40FF40" title="#40FF40"></a></td>
<td bgcolor="#40FF80" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#40FF80" title="#40FF80"></a></td>
<td bgcolor="#40FFBF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#40FFBF" title="#40FFBF"></a></td>
<td bgcolor="#40FFFF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#40FFFF" title="#40FFFF"></a></td>
</tr>
<tr>
<td bgcolor="#800000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#800000" title="#800000"></a></td>
<td bgcolor="#800040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#800040" title="#800040"></a></td>
<td bgcolor="#800080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#800080" title="#800080"></a></td>
<td bgcolor="#8000BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#8000BF" title="#8000BF"></a></td>
<td bgcolor="#8000FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#8000FF" title="#8000FF"></a></td>
<td bgcolor="#804000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#804000" title="#804000"></a></td>
<td bgcolor="#804040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#804040" title="#804040"></a></td>
<td bgcolor="#804080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#804080" title="#804080"></a></td>
<td bgcolor="#8040BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#8040BF" title="#8040BF"></a></td>
<td bgcolor="#8040FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#8040FF" title="#8040FF"></a></td>
<td bgcolor="#808000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#808000" title="#808000"></a></td>
<td bgcolor="#808040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#808040" title="#808040"></a></td>
<td bgcolor="#808080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#808080" title="#808080"></a></td>
<td bgcolor="#8080BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#8080BF" title="#8080BF"></a></td>
<td bgcolor="#8080FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#8080FF" title="#8080FF"></a></td>
<td bgcolor="#80BF00" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#80BF00" title="#80BF00"></a></td>
<td bgcolor="#80BF40" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#80BF40" title="#80BF40"></a></td>
<td bgcolor="#80BF80" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#80BF80" title="#80BF80"></a></td>
<td bgcolor="#80BFBF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#80BFBF" title="#80BFBF"></a></td>
<td bgcolor="#80BFFF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#80BFFF" title="#80BFFF"></a></td>
<td bgcolor="#80FF00" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#80FF00" title="#80FF00"></a></td>
<td bgcolor="#80FF40" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#80FF40" title="#80FF40"></a></td>
<td bgcolor="#80FF80" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#80FF80" title="#80FF80"></a></td>
<td bgcolor="#80FFBF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#80FFBF" title="#80FFBF"></a></td>
<td bgcolor="#80FFFF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#80FFFF" title="#80FFFF"></a></td>
</tr>
<tr>
<td bgcolor="#BF0000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF0000" title="#BF0000"></a></td>
<td bgcolor="#BF0040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF0040" title="#BF0040"></a></td>
<td bgcolor="#BF0080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF0080" title="#BF0080"></a></td>
<td bgcolor="#BF00BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF00BF" title="#BF00BF"></a></td>
<td bgcolor="#BF00FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF00FF" title="#BF00FF"></a></td>
<td bgcolor="#BF4000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF4000" title="#BF4000"></a></td>
<td bgcolor="#BF4040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF4040" title="#BF4040"></a></td>
<td bgcolor="#BF4080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF4080" title="#BF4080"></a></td>
<td bgcolor="#BF40BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF40BF" title="#BF40BF"></a></td>
<td bgcolor="#BF40FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF40FF" title="#BF40FF"></a></td>
<td bgcolor="#BF8000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF8000" title="#BF8000"></a></td>
<td bgcolor="#BF8040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF8040" title="#BF8040"></a></td>
<td bgcolor="#BF8080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF8080" title="#BF8080"></a></td>
<td bgcolor="#BF80BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF80BF" title="#BF80BF"></a></td>
<td bgcolor="#BF80FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BF80FF" title="#BF80FF"></a></td>
<td bgcolor="#BFBF00" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BFBF00" title="#BFBF00"></a></td>
<td bgcolor="#BFBF40" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BFBF40" title="#BFBF40"></a></td>
<td bgcolor="#BFBF80" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BFBF80" title="#BFBF80"></a></td>
<td bgcolor="#BFBFBF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BFBFBF" title="#BFBFBF"></a></td>
<td bgcolor="#BFBFFF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BFBFFF" title="#BFBFFF"></a></td>
<td bgcolor="#BFFF00" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BFFF00" title="#BFFF00"></a></td>
<td bgcolor="#BFFF40" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BFFF40" title="#BFFF40"></a></td>
<td bgcolor="#BFFF80" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BFFF80" title="#BFFF80"></a></td>
<td bgcolor="#BFFFBF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BFFFBF" title="#BFFFBF"></a></td>
<td bgcolor="#BFFFFF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#BFFFFF" title="#BFFFFF"></a></td>
</tr>
<tr>
<td bgcolor="#FF0000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF0000" title="#FF0000"></a></td>
<td bgcolor="#FF0040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF0040" title="#FF0040"></a></td>
<td bgcolor="#FF0080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF0080" title="#FF0080"></a></td>
<td bgcolor="#FF00BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF00BF" title="#FF00BF"></a></td>
<td bgcolor="#FF00FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF00FF" title="#FF00FF"></a></td>
<td bgcolor="#FF4000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF4000" title="#FF4000"></a></td>
<td bgcolor="#FF4040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF4040" title="#FF4040"></a></td>
<td bgcolor="#FF4080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF4080" title="#FF4080"></a></td>
<td bgcolor="#FF40BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF40BF" title="#FF40BF"></a></td>
<td bgcolor="#FF40FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF40FF" title="#FF40FF"></a></td>
<td bgcolor="#FF8000" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF8000" title="#FF8000"></a></td>
<td bgcolor="#FF8040" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF8040" title="#FF8040"></a></td>
<td bgcolor="#FF8080" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF8080" title="#FF8080"></a></td>
<td bgcolor="#FF80BF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF80BF" title="#FF80BF"></a></td>
<td bgcolor="#FF80FF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FF80FF" title="#FF80FF"></a></td>
<td bgcolor="#FFBF00" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FFBF00" title="#FFBF00"></a></td>
<td bgcolor="#FFBF40" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FFBF40" title="#FFBF40"></a></td>
<td bgcolor="#FFBF80" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FFBF80" title="#FFBF80"></a></td>
<td bgcolor="#FFBFBF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FFBFBF" title="#FFBFBF"></a></td>
<td bgcolor="#FFBFFF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FFBFFF" title="#FFBFFF"></a></td>
<td bgcolor="#FFFF00" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FFFF00" title="#FFFF00"></a></td>
<td bgcolor="#FFFF40" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FFFF40" title="#FFFF40"></a></td>
<td bgcolor="#FFFF80" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FFFF80" title="#FFFF80"></a></td>
<td bgcolor="#FFFFBF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FFFFBF" title="#FFFFBF"></a></td>
<td bgcolor="#FFFFFF" style="width: 15px; height: 10px;"><a href="#" onclick="bbfontstyle('', ''); return false;"><img src="images/spacer.gif" width="15" height="10" alt="#FFFFFF" title="#FFFFFF"></a></td>
</tr>
</tbody></table>

      </dd>
   </dl>
</div>

<div id="format-buttons">
   <input type="button" class="button2" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px" onclick="bbstyle(0)" title="Bold text: text">
   <input type="button" class="button2" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px" onclick="bbstyle(2)" title="Italic text: text">
   <input type="button" class="button2" accesskey="u" name="addbbcode4" value=" u " style="text-decoration: underline; width: 30px" onclick="bbstyle(4)" title="Underline text: text">
   
      <input type="button" class="button2" accesskey="q" name="addbbcode6" value="Quote" style="width: 50px" onclick="bbstyle(6)" title="Quote text:
Citar
text
">
   
   <input type="button" class="button2" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onclick="bbstyle(8)" title="Code display:
Código:
code
">
   <input type="button" class="button2" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onclick="bbstyle(10)" title="List:
    text
">
   <input type="button" class="button2" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onclick="bbstyle(12)" title="Ordered list: [list=]text[/list]">
   <input type="button" class="button2" accesskey="y" name="addlitsitem" value="
  • " style="width: 40px" onclick="bbstyle(-1)" title="List item:
  • text[/*]">
       
          <input type="button" class="button2" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onclick="bbstyle(14)" title="Insert image: ">
       
          <input type="button" class="button2" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onclick="bbstyle(16)" title="Insert URL: http://url or URL text">
       
          <input type="button" class="button2" accesskey="d" name="addbbcode18" value="Flash" onclick="bbstyle(18)" title="Flash: [flash=width,height]http://url[/flash]">
       
       <select name="addbbcode20" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" title="Font size: [size=85]small text[/size]">
          <option value="50">Tiny</option>
          <option value="85">Small</option>
          <option value="100" selected="selected">Normal</option>
          
             <option value="150">Large</option>
             
                <option value="200">Huge</option>
             
       </select>
       <input type="button" class="button2" name="bbpalette" id="bbpalette" value="Font colour" onclick="change_palette();" title="Font colour: text  Tip: you can also use color=#FF0000">
       
    </div>


       <div id="smiley-box">
          
             <strong>Smilies</strong><br>
             
                <a href="#" onclick="insert_text(':D', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_e_biggrin.gif" width="15" height="17" alt=":D" title="Very Happy"></a>
             
                <a href="#" onclick="insert_text(':)', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_e_smile.gif" width="15" height="17" alt=":)" title="Smile"></a>
             
                <a href="#" onclick="insert_text(';)', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_e_wink.gif" width="15" height="17" alt=";)" title="Wink"></a>
             
                <a href="#" onclick="insert_text(':(', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_e_sad.gif" width="15" height="17" alt=":(" title="Sad"></a>
             
                <a href="#" onclick="insert_text(':o', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_e_surprised.gif" width="15" height="17" alt=":o" title="Surprised"></a>
             
                <a href="#" onclick="insert_text(':shock:', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_eek.gif" width="15" height="17" alt=":shock:" title="Shocked"></a>
             
                <a href="#" onclick="insert_text(':?', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_e_confused.gif" width="15" height="17" alt=":?" title="Confused"></a>
             
                <a href="#" onclick="insert_text('8-)', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_cool.gif" width="15" height="17" alt="8-)" title="Cool"></a>
             
                <a href="#" onclick="insert_text(':lol:', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_lol.gif" width="15" height="17" alt=":lol:" title="Laughing"></a>
             
                <a href="#" onclick="insert_text(':x', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_mad.gif" width="15" height="17" alt=":x" title="Mad"></a>
             
                <a href="#" onclick="insert_text(':P', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_razz.gif" width="15" height="17" alt=":P" title="Razz"></a>
             
                <a href="#" onclick="insert_text(':oops:', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_redface.gif" width="15" height="17" alt=":oops:" title="Embarrassed"></a>
             
                <a href="#" onclick="insert_text(':cry:', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_cry.gif" width="15" height="17" alt=":cry:" title="Crying or Very Sad"></a>
             
                <a href="#" onclick="insert_text(':evil:', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_evil.gif" width="15" height="17" alt=":evil:" title="Evil or Very Mad"></a>
             
                <a href="#" onclick="insert_text(':twisted:', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_twisted.gif" width="15" height="17" alt=":twisted:" title="Twisted Evil"></a>
             
                <a href="#" onclick="insert_text(':roll:', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_rolleyes.gif" width="15" height="17" alt=":roll:" title="Rolling Eyes"></a>
             
                <a href="#" onclick="insert_text(':!:', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_exclaim.gif" width="15" height="17" alt=":!:" title="Exclamation"></a>
             
                <a href="#" onclick="insert_text(':?:', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_question.gif" width="15" height="17" alt=":?:" title="Question"></a>
             
                <a href="#" onclick="insert_text(':idea:', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_idea.gif" width="15" height="17" alt=":idea:" title="Idea"></a>
             
                <a href="#" onclick="insert_text(':arrow:', true); return false;"><img src="http://sawhost.net/foro/images/smilies/icon_arrow.gif" width="15" height="17" alt=":arrow:" title="Arrow"></a>
             
                <a href="#" onclick="insert_text(':|', true); return false;"><img src=&


En línea

el-brujo
ehn
***
Desconectado Desconectado

Mensajes: 21.580


La libertad no se suplica, se conquista


Ver Perfil WWW
Re: Enviar formulario a web externa
« Respuesta #1 en: 6 Julio 2012, 12:57 pm »

¿Has revisado que el formulario tenga la id de sesión? Es como un token que valida que realmente hayas entrado al foro e impide falsifcaciones. Es cómo un captcha para formularios xD

Seguro que phpbb3  tiene token de desión.


En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
Enviar datos de excel a tabla externa
Programación Visual Basic
inodoro pereyra 2 5,050 Último mensaje 2 Noviembre 2005, 03:59 am
por inodoro pereyra
Enviar formulario a correo « 1 2 »
PHP
lluk 18 8,974 Último mensaje 8 Septiembre 2010, 23:04 pm
por neopuerta360
[?][php][mysql]Enviar consulta en un formulario « 1 2 »
Desarrollo Web
Jaes 12 5,795 Último mensaje 10 Enero 2013, 12:09 pm
por 01munrra
enviar formulario de una pagina con java
Java
soru13 3 2,695 Último mensaje 9 Marzo 2013, 08:02 am
por 1mpuls0
Enviar click a ventana externa (de forma especial)
.NET (C#, VB.NET, ASP)
TomaSs 0 1,495 Último mensaje 25 Enero 2014, 14:04 pm
por TomaSs
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines