Skip to content

Instantly share code, notes, and snippets.

@felquis
Created April 28, 2011 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felquis/946378 to your computer and use it in GitHub Desktop.
Save felquis/946378 to your computer and use it in GitHub Desktop.
<?php
$link = mysql_connect('localhost', 'root', '12345678');
if (!$link) {
die('não deu certo ' . mysql_error());
}else{
echo "ok<br>";
}
function LimparTexto($texto,$link)
{
$texto = mysql_real_escape_string($texto, $link);
return("teste - ".$texto);
}
echo LimparTexto("<html>|texto\|cachorro/|gato=|nada?",$link);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment