Jump to content

Check textarea if it includes <a> tag


sean14592

Recommended Posts

I have tried...

 

if ((strstr($main_desc, "<a")) || (strstr($area_desc, "<a")) || (strstr($getthere_desc, "<a"))){
echo '<br><center>';
echo 'Opps! Looks like we have a problem....<br><br>';
echo '<b>Error: <FONT COLOR="#FF3300"><u>You cannot include links in your any part of your listing unless specifically asked!</u></b></font>';
echo '<br><br><a href="'.$siteurl.'index.php?p=oaddprop5"><img src="'.$siteurl.'style/form/fix_error.gif" width="240" height="40" border="0" /></a>';
exit;
}

 

...sadly didnt work, i used <a> and didn't get any error, I will try other now :)

 

I have also tried...

 

if (  strpos( $_POST['main_desc'], '<a' ) !== FALSE  ){
    echo 'Found an <a> tag!';
}

 

...still dosent work

Sean

If those don't work for you, you can try:

 

$post = "Lololol <a href=\"lol.php\">O_O</a>";
if (eregi('<a(.*)>', $post)) {
echo "Here!\n";  
//stuff
}
else {
  echo "Nope\n";
  //other stuff
}

 

Ok, when i try this i get....

Warning: eregi() [function.eregi]: REG_BADRPT in ******/public_html/pages/oaddprop6.php on line 154
Nope 

 

 

line 154 is....

if (eregi('<a(.*)>', $post)) {

 

 

Cheers

Sean

 

Let me see what's actually in your variable.  Because it works for me.    Please show us the output of echo $_POST['whatever'] (I don't know which key you're using, lol), and obviously put in the correct key.

 

(And you're making me use PHP 5 for this. =(  PHP6 doesn't use ereg anymore.  That's why I wrote a PCRE one too, lol.)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.