Supercoders | Web Development and Design | Tutorial for Java, PHP, HTML, Javascript: php-online

Supercoders | Web Development and Design | Tutorial for Java, PHP, HTML, Javascript: php-online

Post Top Ad

Post Top Ad

Showing posts with label php-online. Show all posts
Showing posts with label php-online. Show all posts

Tuesday, May 21, 2019

PHP Variables Avoiding == Versus = Confusion

6 years ago 0

PHP Variables Avoiding == Versus = Confusion Problem You don’t want to accidentally assign values when comparing a variable and a constant. Solution Use:            if (12 == $dwarves) { ... } instead of:            if ($dwarves == 12)...

Read More

Post Top Ad