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 8530029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T09:09:49+00:00 2026-06-11T09:09:49+00:00

I want to use file_get_contents() on an html file with 3 $vars written inside

  • 0

I want to use file_get_contents() on an html file with 3 $vars written inside it and have those vars get the data assigned to them through $_POST.

example:

-html file-
    <html>
    .
    .
    <table>
    <tr>
    <td>first name</td><td>last name</td><td>id</td>
    </tr>
    <tr>
    <td>$fname</td><td>$lname</td><td>$id</td>
    </tr>
    </table>
    </html>

-php file-
    <?php
    .
    .
    $fname = $_POST('fname');
    $lname = $_POST('lname');
    $id = $_POST('id');
    $page = file_get_contents("test.html");
    echo $page;
    ?>

what I did for now was to set a comment "<!--split-->" where the vars go and then I explode() the file_get_contents(“test.html”), attach the vars to the end of it and implode() the $page.
but it seems kinda intensive for such a small task and I hoped for a better solution.
I hope I have been clear enough with my question. if not please ask and I’ll try to clarify more if I can.

  • 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-06-11T09:09:51+00:00Added an answer on June 11, 2026 at 9:09 am

    This is a solution which would require control of the test.html file:

    1: Rename test.html to test.php

    2: Edit test.php so it looks like this (notice I added the echo keyword, surrounded by PHP opening and closing tags):

    <?php
    //View (PHP file)
    ?>
    <html>
    
        <table>
            <tr>
                <td>first name</td><td>last name</td><td>id</td>
            </tr>
            <tr>
                <td><?php echo $fname; ?></td>
                <td><?php echo $lname; ?></td>
                <td><?php echo $id; ?></td>
            </tr>
        </table>
    
    </html>
    

    3: Now, in your main PHP file, just include the PHP template file:

    $fname = $_POST('fname');
    $lname = $_POST('lname');
    $id = $_POST('id');
    include 'test.php';
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Whenever I want to get data from a plist file I use the following
I have a transaction log file in CSV format that I want use to
I want to use regular expression to find strings in a file that have
I want to get the html contents from a website and I use the
I have a page that is written in HTML, I want to add a
I have an html document that I saved as a .txt file. I want
How to use FileReader not to use BufferReader i want to use File,FileReader for
I want use a single php file to handle all of my voting requests.
I want to use a JavaScript file, lying in the root folder. How can
I want to use x[#] from first file and x[#] from second file, I

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.