Jump to content

PHP code not outputting right


Go to solution Solved by xProteuSx,

Recommended Posts

Hello :-)

This PHP code:

 
<html>
<?php
echo "<h2>PHP is Fun!</h2>";
echo "Hello world!<br>";
echo "I'm about to learn PHP!<br>";
echo "This ". "string ". "was ". "made ". "with multiple parameters.";
?>
</html>
 
outputs this:
 
PHP is Fun!"; echo "Hello world!
"; echo "I'm about to learn PHP!
"; echo "This ". "string ". "was ". "made ". "with multiple parameters."; ?>
 
And I cannot figure out why :-(
Link to comment
https://forums.phpfreaks.com/topic/295758-php-code-not-outputting-right/
Share on other sites

  • Solution

Seems like you've got this in a .htm or .html file.  Try saving the file as .php, and see if the code runs properly.  There are ways to make PHP code run in .html or .htm or .shtml files, by editing your .htaccess file.

My .htaccess files usually contain something like this:

AddHandler application/x-httpd-php5 .html .php .htm .shtml

This tells the server to look for php code within those file types, and process it as php code, and not plain text.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.