answersLogoWhite

0

<?php echo "Hello world"?>

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

The correct way to write Hello World in PHP is?

echo("hello world");


How do you run a PHP script?

You run a PHP code using the following code.The code above will display the text Hello world in a HTML document.


How many concatenation operators use in PHP?

There is one concatenation in PHP it is the period ".". So you could do something like:It would print out hello world!


What are the PHP tags?

There are no PHP tags. Unlike HTML, PHP is not Markup language. They use scripts. An example would be &lt;?php echo "Hello, World!"; ?&gt;


What PHP statement outputs text on the screen?

There are several different ways to output text on the screen in PHP two of the most common are echo and print. echo "Hello World!"; print ("Hello World!"); Would both print ... Hello World!


Hello world program?

A "Hello world" program is usually the very first program you write when learning a new programming language, it simply prints out the text "Hello World". Below are a few examples: PHP: echo "Hello World"; _____________________________________ JavaScript: document.write("Hello World"); _____________________________________ Visual Basic: Module Hello Sub Main() MsgBox("Hello, World!") ' Display message on computer screen. End Sub End Module


What is the correct JavaScript syntax to write Hello World?

document.write("hello world");


How do you return a value in a PHP function?

Below is a simple example of how you could return a value in a PHP function. &lt;?php function returnme($value) { return $value; } echo returnme('hello'); // outputs: hello ?&gt;


How do you make a flowchart for 'hello world'?

( start ) -&gt; / Write "Hello World" / -&gt; ( end ) *try to search an example on google. *type "flowchart of hello world"


What is php extension?

We can write php extension is many way... .php , .php5, .php4


How do you write a php algorithm?

Well if you know php then you can write your own algorithm php syntax is &lt;?php //open php tag $num = 1; $num2 = 2; $total = $num + $num2; echo $total; ?&gt; //close php tag


What is PHP enabled host?

A host that allows you to write in PHP