How can we display information of a variable and readable by human with php?



How can we display information of a variable and readable by human with php?..

Answer / Sitaram

To display information of a variable in PHP readable by humans, you can use the echo command or the print function. Here is an example using echo: <?php $myVariable = 'Hello World'; echo $myVariable; ?>

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More PHP Interview Questions

What are the ways to include file in php?

1 Answers  


we have two tables first one is EMPLOYEE having EmpID, EmpNAME, Second table is SALARY table having id, salary Write a query to get name of those person who having more than 10000$ salary

3 Answers   Net Solution,


What is php destruct?

1 Answers  


How can we submit form without a submit button?

1 Answers  


What are PHP Magic Methods/Functions. List them.

1 Answers  


How to convert one date format into another in php?

1 Answers  


Difference between mysql_connect and mysql_pconnect?

1 Answers  


Why do we use htaccess

1 Answers  


When is a conditional statement ended with endif?

1 Answers  


How to enable error reporting in php?

1 Answers  


What is the use of isset() in php?

1 Answers  


Does php support polymorphism?

1 Answers  


Categories