Link to home
Start Free TrialLog in
Avatar of eteran
eteranFlag for United States of America

asked on

Php code help needed

How do I print in php

in asp it is response.write how is it in php
ASKER CERTIFIED SOLUTION
Avatar of glcummins
glcummins
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
There is a very good resource on the php.net web site - it is all the manual pages with user comments.  Have a look at this example: http://us3.php.net/manual/en/function.echo.php

HTH, ~Ray
Avatar of wktang83
wktang83

Also, if you want to output formatted string (such as floating values with a number of decimal digits), you can use this useful function -- printf:

http://us3.php.net/manual/en/function.printf.php
Avatar of Loganathan Natarajan
echo is used to print the output to the user like in asp response.write