Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
0
Bryan Hutapea Create $name & $address variable first, assign values for them, then you can use `echo` to print them to the screen. Please try like this: $name = "Bryan"; $address = "sirongit"; echo "Name: $name<br />Address: $address"; After we have created $name & $address variable we can assign different value for them and print again, we will see different output by then 👍
24th Aug 2019, 12:36 PM
Ipang