Basic PHP Programming Question:

Download Job Interview Questions and Answers PDF

Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?

PHP Interview Question
PHP Interview Question

Answer:

In this example it wouldn’t matter, since the variable is all by itself, but if you were to print something like "{$a},000,000 mln dollars", then you definitely need to use the braces.

Download PHP Interview Questions And Answers PDF

Previous QuestionNext Question
I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, what is the problem?What are the different tables present in MySQL? Which type of table is generated when we are creating a table in the following syntax: create table employee(eno int(2),ename varchar(10))?