Originally Posted by
Thunderofnl
Alright so I want to have a website with Hello World in there... I really have no clue how to do it.. I know how to open php but it does not display hello world... Can you help me? Thanks <3
To start off, your tags for opening the PHP command are incorrect. You'll always want to start off with:
PHP Code:
<?php echo "Hello, World"; ?>
or if you have short_codes enabled:
PHP Code:
<? echo "Hello, World"; ?>
PHP: PHP tags - Manual
From there I ask you to check the PHP configuration on your server. To do that place the following line of code in your document:
PHP Code:
<?php phpinfo(); ?>
That will show you what version of PHP you're using, what general configuration your server has set up for you and so forth.
That's one place to start, let me know if you have any other questions.