Sandy: Formular mithilfe eines URL aufrufes abschicken?

Hallo,
leider habe ich bisher vergeblich nach einer Lösung gesucht...
ich möchte gerne wissen wie ich folgendes Formular mithilfe meines Browsers absenden kann?
Ziel ist es eine direkte Domain einzugeben um dieses Formular nicht mehr nutzen zu müssen!

Original Formular:
http://beispiel.de/index.php?a=addurl
Formular

Source Code des Formulars:

<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>  
<script type="text/javascript" src="/js/jquery.js"></script>  
<script type="text/javascript" src="/js/jquery.tipsy.js"></script>  
<script src="/js/jquery-ui-1.8.13.custom.min.js"></script>  
<script type="text/javascript">  
$(document).ready(function() {  
	$('#search').keypress(function(x){if(x.keyCode==13){q=$(this).val();if(q!=this.defaultValue){document.location='/index.php?a=search&q='+escape(q)}}});  
	$('#search').focus(function(){if($(this).val()==this.defaultValue)$(this).val('')});  
	$('#search').blur(function(){if($(this).val()=='')$(this).val(this.defaultValue)});  
	  
	$('#q').keypress(function(x){if(x.keyCode==13){q=$(this).val();if(q!=this.defaultValue){document.location='/index.php?a=search&q='+escape(q)}}});  
	$('#q').focus(function(){if($(this).val()==this.defaultValue)$(this).val('')});  
	$('#q').blur(function(){if($(this).val()=='')$(this).val(this.defaultValue)});  
	  
	$('.button, .avatar').tipsy({gravity:'w', fade:1, html: true, opacity: 1});  
});  
</script>  
</head>  
<body>  
<div id="header">  
	<div class="logo">  
		<a href="/?ref=tmf-logo"><img src="http://techno-music-friends.com/images/logo_s.png" /></a><br />  
	</div>  
<div class="headerContent"><div class="headerMenu"><a href="/index.php?a=addurl">Add url</a></div></div>  
</div>  
<div id="content">  
  
  
  
<div class="addurlContent">  
Enter a domain to be crawled:<br />  
<form action="/index.php?a=addurl" method="post">  
URL: <input type="text" name="url" />  
<input type="submit" />  
</form>  
<div class="addurlSmall">You must add the full URL including the prefix, example: <strong>http://techno-music-friends.com</strong></div>  
</div>  
  
<div class="addurlContent">  
Enter a domain to be crawled, it will crawl the external links too (slower method, it might take a few minutes):<br />  
<form action="/index.php?a=addurl" method="post">  
URL: <input type="text" name="urls" />  
<input type="submit" />  
</form>  
<div class="addurlSmall">You must add the full URL including the prefix, example: <strong>http://alle-provider.de</strong></div>  
</div>  
<div class="addurlContent">Note: In some certain cases it might take a few minutes until we finish crawling the website submitted.</div>  
</div>  
<div class="footer">

So in etwa soll der Link zum direkten Eintragen dann in etwa aussehen:
http://beispiel.de/index.php?addurl=http://zu-uebertragende-url.de

Ich bin für jede Hilfe dankbar!

greeetz
Sandy

  1. Om nah hoo pez nyeetz, Sandy!

    <form action="/index.php?a=addurl" method="post">

    Da das verarbeitende Script offensichtlich die Daten als POST-Request erwartet, kannst du sie nicht per GET an das Script senden. D.h. senden schon, nur wird da nicht viel passieren.

    Matthias

    --
    1/z ist kein Blatt Papier.

    1. Om nah hoo pez nyeetz, Sandy!

      <form action="/index.php?a=addurl" method="post">

      Da das verarbeitende Script offensichtlich die Daten als POST-Request erwartet, kannst du sie nicht per GET an das Script senden. D.h. senden schon, nur wird da nicht viel passieren.

      Matthias

      Hallo,
      danke für deine Hilfestellung.
      Doch ich verstehe noch nicht ganz?
      Also kann es so nicht funktionieren oder wie?

      Falls nicht geht es evtl. mit diesen Scripten:
      http://url-searchengine-pinger.alle-provider.de

      oder
      http://blog-pinger.alle-provider.de/tools

      greetz
      Sandy

      1. Om nah hoo pez nyeetz, Sandy!

        Falls nicht geht es evtl. mit diesen Scripten:

        Das musst du schon die Leute fragen, die die Scripte geschrieben haben. Ich könnte mir vorstellen, dass sie einen Grund haben, die Funktionalität ausschließlich mithilfe ihres Formulars zur Verfügung zu stellen und sei es nur, um Werbung einblenden zu können.

        Matthias

        --
        1/z ist kein Blatt Papier.