Basic PHP Programming Question:
How do you pass a variable by value?
Answer:
Just like in C++, put an ampersand in front of it, like $a = &$b
Previous Question | Next Question |
How can we encrypt the username and password using PHP? | WHAT IS THE FUNCTIONALITY OF THE FUNCTIONS STRSTR() AND STRISTR()? |