Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Software Development
Programming
Programming Q&A
PHP Script as Image
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Macemore" data-source="post: 272942" data-attributes="member: 6113"><p>as far as my knowledge goes you can't run a php file in an html page unless you use htaccess to make .html pretend to be .php</p><p>you could rename it to .php and have html in the .php file and then include the script like so:</p><p>[code]</p><p><?php</p><p>//this is a php file</p><p>include('variables.php');</p><p>?></p><p><html></p><p> <head></p><p> <title><?php echo $title; ?></title><!-- just included a variable on a html page woa --></p><p> </head></p><p></html></p><p>[/code]</p><p>past that I don't think whatever you're trying to do isn't possible the way you're describing it to us</p></blockquote><p></p>
[QUOTE="Macemore, post: 272942, member: 6113"] as far as my knowledge goes you can't run a php file in an html page unless you use htaccess to make .html pretend to be .php you could rename it to .php and have html in the .php file and then include the script like so: [code] <?php //this is a php file include('variables.php'); ?> <html> <head> <title><?php echo $title; ?></title><!-- just included a variable on a html page woa --> </head> </html> [/code] past that I don't think whatever you're trying to do isn't possible the way you're describing it to us [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Software Development
Programming
Programming Q&A
PHP Script as Image
Top