how to make space in PHP ?? while writing code to make a calculator, i want space between Heading and answer e.g Echo "this is answer" Echo $value1+$value2; display will be like this is anwer33 how to make space there | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how to make space in PHP ?? while writing code to make a calculator, i want space between Heading and answer e.g Echo "this is answer" Echo $value1+$value2; display will be like this is anwer33 how to make space there

18th Oct 2016, 7:21 PM
Adeel Ahmad
Adeel Ahmad - avatar
4 Answers
+ 2
try this. echo "this is answer "; or try this. echo ' '.$value1+$value2;
19th Oct 2016, 11:50 AM
santosh ojha
santosh ojha - avatar
+ 1
"This is answer "
18th Oct 2016, 9:42 PM
bboy Edison
bboy Edison - avatar
0
thanks buddy
19th Oct 2016, 4:19 AM
Adeel Ahmad
Adeel Ahmad - avatar
0
thank ew santosh... done 👌
19th Oct 2016, 11:51 AM
Adeel Ahmad
Adeel Ahmad - avatar