943,912 Members | Top Members by Rank

Ad:
  • PHP Discussion Thread
  • Unsolved
  • Views: 4160
  • PHP RSS
Mar 27th, 2008
0

Remove Image

Expand Post »
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.
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
miss_bismillah is offline Offline
1 posts
since Mar 2008
Mar 27th, 2008
0

Re: Remove Image

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
PHP Syntax (Toggle Plain Text)
  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
Reputation Points: 10
Solved Threads: 6
Junior Poster in Training
sagedavis is offline Offline
86 posts
since Nov 2007

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in PHP Forum Timeline: Popup window which queries a var
Next Thread in PHP Forum Timeline: How to give the variable value to textfield on same page?





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC