Jump to content

php code not recognised?


dazwalker

Recommended Posts

I have just installed apache 2.0.59 win 32 X86 and PHP 5.2.5

 

I have tried some basic php code and saved it as a php file, but when I open the file in Internet Explorer it only reads the html and not the php code. I used the code below:

 

<HTML>

<HEAD>

<TITLE> My first PHP page</TITLE>

</HEAD>

<BODY>

<?

echo "Hello world!";

?>

</BODY>

</HTML>

 

Whats wrong?

Link to comment
https://forums.phpfreaks.com/topic/78721-php-code-not-recognised/
Share on other sites

If you so wish you can enable short tags within the php.ini file.

 

If you have full root access to the server, the php.ini can be found in the following locations:

 

Windows:

 

C:/php/ (default)

 

Linux:

 

/usr/lib/php.ini (Most Linux Distrobutions)

 

If it is not located at the above directory on linux, you can find the file by typing the following command into terminal

 

locate php.ini (you may have to update the file database first, which can be done by typing "updatedb")

 

You can then edit the file using nano, vi, or pico depending on the server distrobution.

 

Regards.

That would result in code that is not portable between servers, in case you might not have the ability to turn on short open tags. Most people don't like to write code twice, once on a development system and again when they put it on a different server.

 

The following is the recommendation by php.net -

 

; NOTE: Using short tags should be avoided when developing applications or

; libraries that are meant for redistribution, or deployment on PHP

; servers which are not under your control, because short tags may not

; be supported on the target server. For portable, redistributable code,

; be sure not to use short tags.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.