Jump to content
Fórum Script Brasil
  • 0

Como Inibir A Execução De Tags Html


Guest PINGUIN(:>)

Question

Guest PINGUIN(:>)

Como posso enibir que TAGS html sejam executadas em meu script ...pois criei um guestbook , o porem é que algums usuarios enviam tags html atravez do formulario o que acaba me cauzando problemas ..como posso enibir tais tags ??

sera que a um meio de tratar a string enviada pelo usuario antes dela ser gravada na base de dados , e retirar as tags html ???

por favor me ajudem .......

abraços .. smile.gif

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Ahh...eu tive esse mesmo problema...mas achei a solução também...existe uma função str_replace...vo fazer uma função aqui...pera ae...

function adapta($mensagem)
{
$msg = str_replace("<","&lt;",$mensagem);
$msg2 = str_replace(">","&gt;",$msg);
return $msg2;
}
Ela retorna a mensagem consertada...exemplo:
<?
function adapta($mensagem)
{
$msg = str_replace("<","&lt;",$mensagem);
$msg2 = str_replace(">","&gt;",$msg);
return $msg2;
}
echo adapta("<>");
?>

faz isso, ve se é o que você quer

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...