Quote:
|
I don't understand how the following declarations works, or what they mean. How is the notation $ProdID = $Order[0] ? $Order[0] : ""; read, or what does it mean?
|
This is just an easy and fast way to write an if/else statement. Syntax is as follows
($argument) ? 'true' : 'false';
So,