How can I write into a specific part of a page php

3 replies
I want to write (add) specific text (a new row in a table that contains some text) to a php file in a specific section without overwriting.

I know how to create a new page, and I also know how to add text to the end of a page. But I am still trying to figure out how to add text to a specific part without overwriting previous data.

Thanks
#page #part #php #specific #write
  • Profile picture of the author Speedyapoc
    Do you mean like literally appending the PHP file and writing to that?
    {{ DiscussionBoard.errors[4425715].message }}
  • Profile picture of the author Speedyapoc
    I agree with DesignSail if you are editing content inside of the file.

    Create a database and some columns to house various page content. Set the columns to "longtext" so they can hold a large amount of data. Then, just retrieve data as you see fit, and update data to the database instead of the actual file.
    {{ DiscussionBoard.errors[4425791].message }}

Trending Topics