Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP PHP Basics (Retired) PHP Data & Structure PHP Variables

how do i echo a name to the screen into a code block

code block

<?php
  $name = "Mike" ?>

1 Answer

Sergey Podgornyy
Sergey Podgornyy
20,660 Points

Rodney, just type echo and then variable name:

<?php
  $name = "Mike";
  echo $name;
?>

or you can use short open tags

<?php $name = "Mike"; ?>

<p>Name specified in variable is <?= $name; ?></p>

Instead of echo you can write print, but echo is faster.

In future, when you will work with arrays, you'll need functions as print_r() and var_dump()