PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
is it possible to convert the web page html content into php and store it into the variables in php.
i have found couple of softwares that converts the html content into php but each time i had to do it
manually. I want to change html content into php dynamically.
PHP is embeddable (is that a word?) into your HTML page. In reality you could simply change your extension from .html to .php and it will be a PHP page.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
amitshetye wrote:to convert the web page html content into php and store it into the variables in php.
what do you exactly mean by that phrase
— to store the html page contents into a PHP variable or
— to change portions of HTML page to incorporate PHP code for making it dynamic
by that i can get the whole html page along with the tags
but i want to store it into the php variable
see the following:
<html>
<title>Test</title>
<body>This is test to convert html into php </body>
</html>
so from the above html page i want to store the content between the <title></title> and <body></body> into the variable in php so that i can load it into the flash.