index.php |
castor.php |
engines.php |
snoopy.class.php |
submit.php
···
back to urlator
<? include "./engines.php"; ?>
<?
/*
* URLator v1.1, http://turma.sourceforge.net/web/urlator
* part of Violence by Design project, http://turma.sourceforge.net
* Author: Mircea MITU <mirceamitu@users.sourceforget.net>
* Licence: GPL v2
* Copyright: 2001, Mircea MITU
* Date: October, 2001
*/
?>
<html>
<head>
<title>>> URLator, URL submitter ::: part of Vbd :: Violence by Design :: project ::: by Mircea MITU :::</title>
<link rel="stylesheet" type="text/css" href="./stil.css">
<script language="javascript">
var a="<style>input{border: 1px solid black;}</style>";
if(navigator.userAgent.indexOf("Gecko")>0) document.write(a);
</script>
<script language="javascript">
function tover(t){
t.style.background="#e0e0e0";
t.style.border="1px #336699 solid";
}
function tout(t){
t.style.background="#efefef";
t.style.border="1px #efefef solid";
}
function chk(i,t){
t.style.background="#e0e0e0";
t.style.border="1px #003366 solid";
var a = document.forms['forma'][i].checked;
document.forms['forma'][i].checked=!a;
}
</script>
</head>
<body bgcolor=white topmargin=0 marginheight=0>
<form action="./submit.php" name="forma">
<div style="border: thin solid black; background: #efefef; margin: 2%; padding: 2%;
background-image: url(urlatoare.gif); background-attachement: fixed; background-repeat: no-repeat;">
<table width=90% border=0 cellpadding=0 cellspacing=3 align=center>
<tr>
<td align=right valign=top width=20%>URL:</td>
<td align=left valign=top width=50%><input type=text name="adresa" size=40></td>
<? $i = 4 + count($SUBMITDATA); ?>
<td align=right valign=top width=30% rowspan=<? echo $i; ?> >
<div style="border: thin solid black; background: #dcdcdc; margin: 2%; padding: 5%;
color:black;">
<a><u> URLator: </u></a><br>
URL Submit engine,
part of VbD (<b>Violence by Design</b>) project, by <a>Mircea MITU</a>.
</div>
<div style="border: thin solid black; background: #dcdcdc; margin: 2%; padding: 5%;
color:black;">
<a><u> HowTo: </u></a><br>
<a>»</a> write the URL you want to submit and your <i>e</i>mail address.
the <i>e</i>mail is required by some engines (they'll send you a request for confirmation).<br>
<a>»</a> select search engines you want to submit to<br>
<a>»</a> press <a>submit</a><br>
</div>
<div style="border: thin solid black; background: #dcdcdc; margin: 2%; padding: 5%;
color:black;">
<a><u> Get URLator: </u></a><br>
<a>»</a> Don't forget to visit <b>URLator</b> section
on <a href="http://turma.sourceforge.net">Violence by Design</a> web site<br>
<a>»</a> Hit the <a href="http://turma.sourceforge.net">target</a> to get the latest version and download the source code of URLator.
</div>
</td>
</tr>
<tr>
<td align=right>E-mail:</td>
<td align=left><input type=text name="email" size=40></td>
</tr>
<tr>
<td align=right class="tit">Search engines:</td>
<td> </td>
</tr>
<?
$sURL = $SUBMITDATA;
ksort ($sURL); $i=2;
while ( list ($k,$v) = each ($sURL) ){
echo "<tr>\n<td align=right>";
echo "<input type=checkbox name=\"sit[$k]\" value=\"yes\" class=\"button\"></td>\n";
echo "<td align=left onMouseOver=\"tover(this);\" onMouseOut=\"tout(this);\" onClick=\"javascript:chk($i, this);\">";
echo " <a href=\"http://".strtolower($v[where])."\">$k</a></td>\n";
echo "</tr>\n"; $i++;
}
?>
<tr><td colspan=2 align=center>
<div style="border: thin solid black; background: #dcdcdc; margin: 2%; padding: 2%;">
<input type=submit name="" value="Submit" class="button">
<input type=reset name="" value="Reset" class="button">
</div>
</td></tr>
</table>
</div>
</form>
<p>
<center>
<a>URLator, part of </a><a href="http://turma.sourceforge.net">Violence by Design</a><a> project</a><br>
<a>© 2001 </a><a href="http://turma.sourceforge.net/contact/index.html">Mircea MITU </a>
</center>
</p>
</body>
</html>
index.php |
castor.php |
engines.php |
snoopy.class.php |
submit.php
···
back to urlator