Remove Image

Reply

Join Date: Mar 2008
Posts: 1
Reputation: miss_bismillah is an unknown quantity at this point 
Solved Threads: 0
miss_bismillah miss_bismillah is offline Offline
Newbie Poster

Remove Image

 
0
  #1
Mar 27th, 2008
Can someone give me idea on how to remove image url? For example when i click on the news link..the news information will come out..In the news information page, i only want text.I dont want to display the image. How can i figure out the image.Cause my problem is.. the new details content came from the dbase which is not in my server. I cant delete the URL manually in the server..It need alotof work.at the same time im sharing the same database with other website related.
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 86
Reputation: sagedavis is an unknown quantity at this point 
Solved Threads: 6
sagedavis sagedavis is offline Offline
Junior Poster in Training

Re: Remove Image

 
0
  #2
Mar 27th, 2008
you do not need to figure out the image actually..

Rather than thinking about what html tags you do not want to allow, just think about the ones that you do want to allow.

PHP has a native function to do all of this.

Before displaying the content of your page process it using the following
  1. <?PHP
  2. $description = strip_tags($description, '<b><p><a>');
  3. ?>

Here, I told the variable $description to not have any tags other than the B P and A tags. All other tags will be stripped out.
Use this method on any and all variables which might have image tags that you do not want, but remember to add as the second argument, those tags that you do want.
Sage
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the PHP Forum


Views: 2560 | Replies: 1
Thread Tools Search this Thread



Tag cloud for PHP
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC