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 |
What are the ways to include file in php?
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
What is php destruct?
How can we submit form without a submit button?
What are PHP Magic Methods/Functions. List them.
How to convert one date format into another in php?
Difference between mysql_connect and mysql_pconnect?
Why do we use htaccess
When is a conditional statement ended with endif?
How to enable error reporting in php?
What is the use of isset() in php?
Does php support polymorphism?