close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

How can I strip HTML from the output on a search/results page generated with iRite?

Thread began 1/22/2010 10:55 am by sandy170299 | Last modified 1/22/2010 2:17 pm by sandy170299 | 1528 views | 3 replies |

sandy170299

How can I strip HTML from the output on a search/results page generated with iRite?

I have a new site that uses the iRite Editor for content management behind the scenes. On all of the site pages, the output is perfect. However, when I run an internal search on the web site content and the results page shows up, a bunch of the HTML characters are also showing up in the results list. I believe I know why, but I don't know how to fix it.

I want the page title and only the first 50 characters of the page content field to show up in the results list. This is what I have for my code:

<?php echo $row_getData['pageTitle']; ?>
<br />
<?php echo substr($row_getData['pageContent'],1,50); ?>

It's the page content field that is getting garbled with the HTML characters, and I'm sure it's because of how I'm outputting it. Any ideas on how I can fix this?

Sign in to reply to this post

Jason ByrnesWebAssist

The page content field stores the HTML content for your page. You can fairly easily remove the "<" and ">" Characters, but this will still leave the tag names. For example "<p>" would become "p". it will be pretty problematic to remove _all_ HTML tags from the page content.


The following is an example of how to remove all instances of the "<p>" tag and the "<br />" tag:


<?php echo substr(str_replace("<br />", "", str_replace("<p>", "", $row_getData['pageContent'])),1,50); ?>

Sign in to reply to this post

sandy170299

Thanks, Jason. I see what you mean about not stripping all the HTML, though. Would it be better perhaps, to do it on the database level, within the MySQL query itself? How do you think that would work?

Sign in to reply to this post

sandy170299

Jason, I actually just used the left function within the query itself and it seems to be working fine now. Thanks!

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...