function Conectarse()
{
$server="localhost";
$usuario="root";
$clave="";
$basededatos="spip";
$tabla="";
if (!($link=mysql_connect("localhost","root","")))
{
echo "Error conectando a la base de datos.";
exit();
}
if (!mysql_select_db("spip",$link))
{
echo "Error seleccionando la base de datos.";
exit();
}
return $link;
}
function seguridad($valor)
{
$valor = addslashes(trim($valor));
$valos = str_replace("%20"," ", $valor);
return $valor;
}
$termino = seguridad($_GET['term']);
print "
iah2spip
";
$link=Conectarse();
$resulta = mysql_query("SELECT * FROM spip_mots WHERE titre = '$termino'");
$rows = mysql_fetch_array($resulta);
if ($rows>0) {
print "El término " . $termino . " ya existe";
print "