Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End FOR loop with counter in variables Re: FOR loop with counter in variables

#135794
Senff
Participant

> Remember, single-quotes ( ‘ ) make literal strings – every character you type ( except , but let’s not get into that right now) will be exactly as you see it.

> With double-quotes ( ” ) , PHP will interpret variables and escape characters in the string

Ah, of course….one of the things in PHP that I completely forgot about. Fiddling with JS so much (where single quotes and double quotes are used depending on how I nest code within code usually…) made me forget all about that.