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
4 Réponses
+ 2
try this. echo "this is answer "; or
try this. echo ' '.$value1+$value2;
+ 1
"This is answer "
0
thanks buddy
0
thank ew santosh...
done 👌