What is the usage of { } in string handling in php?
For instance if you have a variable called $multiplier and you want to write something like this: 10x whatever, then you can't write $multiplierx in your echo statement but you could write {$multiplier}x
Comment on this Question and Answer >>>
ASK A QUESTION
More strings PHP Questions
How do I remove space from the start of a PHP string?How do I reverse a string in PHP?
How do I format the output of a string?
How can I remove spaces from around a string value?
My echo command works fine like this: echo " $row[studentName]; however when I try to center the data using div it fails... echo "$row[studentName];
