I used file_get_content() function to get the content of another page, then use substr function cut the content i need and echo it in my page. But i wonder if that page have change the content( by query data in database ) and my content substr from that page will be not correct and my page layout will break! How can i use another function instead of substr function??
If you use some other function then also it will break because you should be having the provision for the changes that may happen at the source or what you could do it have the content and instead of displaying it directly you could insert into the database.
Oh! That's a good ideas! But when it's change the content and i must modify in my database, i think it's not so good! Have some other solution for my solution? Thanks for your reading!
Yes! and this is my code : Code: $str1 = file_get_contents("an example page"); $image = substr($str1, 10423, 120); then, i echo $image that got "<img src="url"/>" from that page and want it's always stand like that whenever that page change the content.