PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
My question is based upon the following code. In the if-else statement, if $b= $e, does $b in the if section of the control statement now contain the value of $e?
Should do. $var_name = value. You can set one variable value to store anothers value so it should make $b store $e, if all the code works. (in the same way you can do $a = $b + $c etc etc)