I want to execute a line of code such as:
if($sub1="") {
$a=0;
}
only once. How would I do that?
|
change = to == to make it a valid condition |
|||||||
|
|
If you run a line of code outside of a loop, it is executed once. This is the default state. If you tell the computer to make you a sandwich, it will make you just one. If you want two you have to ask for two. The reason this particular code isn't running is likely because you've confused |
|||
|
|
goto)? Why would a given line of code run more than once during the execution of your php code? – Jack Maney Feb 8 '12 at 22:37