DEV Community

kostaNovak
kostaNovak

Posted on

1

EP 4: Variables

We learned about string concatenation in php.

It's done with . inbetween 2 strings.
Also we learned how to define variable
$example = "John";

Also, how to use that variable in a string that we concatenate:

echo "Hello $example";

would print out Hello John in this example.

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

If you found this post useful, please drop a ❤️ or leave a kind comment!

Okay