Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6358893
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:26:48+00:00 2026-05-24T23:26:48+00:00

I have a template in my DB with a styling, created by the user.

  • 0

I have a template in my DB with a styling, created by the user. Because users are generally stupid and also I don’t want them to meddle with php code, I want to insert the actual values into their style before the template is rendered. It’s dynamic values.

So I have things like

<p>Here is your value:</p>
<span id="value"></span>
<p>Enjoy it!</p>

A placeholder for the value. This is probably the easiest way. I can’t/don’t want use jQuery here, but I want something similar.

I’ve seen PHP’s DOMDocument class, which seems to do the trick, with one problem: $dom->saveHTML() seems to be always saving the entire HTML tree. $dom->saveHTML($element) saves just that element, but I have several at once in my template.

Is there a trick to get them all saved without the html stuff around?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T23:26:49+00:00Added an answer on May 24, 2026 at 11:26 pm

    saveHTML() saves the element itself and all its children.

    You can save the body node to save the whole document content:

    $body = $doc->getElementsByTagName('body')->item(0);
    $html = $doc->saveHTML($body);
    
    // and remove <body></body>
    $html = substr($html, strlen('<body>'), -strlen('</body>'));
    

    Or save body’s children one by one:

    $html = '';
    foreach($body->childNodes as $node) {
        $html .= $doc->saveHTML($node);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have template base.html and some children templates. I don't know how to set
I have a template in word (.docx) format and want to replace some placeholders
I want to emit some js from jQuery templates e.g I have template like
I dynamically create gridview, and in this grid I have template field also field.HeaderTemplate
I have a custom style for my 'default' Buttons, and also created a custom
I have template for example index.html.php where I use php assetic loader like this
I have created a user control in silver-light. I will use this control in
I have template function compare defined as below. #include<iostream> using namespace std; template<typename T>
I have template that looks like this: 100 template<size_t A0, size_t A1, size_t A2,
I am running Django trunk and have template Autoescaping on (default). Do I need

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.