Free PHP Tutorials

home
Stay at Home and Learn

echo( )

 
Computer Tutorials List

 

 

 

 

 

Can be used as an alternative to the print statement. These do the same thing:

$display_data = "something to display";

print $display_data;
echo $display_data;