Difference between include()and require() in PHP | include() vs. require()
In previous post, we have seen how to include files in PHP using include(), require, include_once() and require_once(). All these function helps you to include/insert content of one file to…
Difference Between SQL and PL/SQL | SQL vs. PL/SQL
Friends, As we know, Oracle is combination of both SQL and PL/SQL. To become an Oracle DBA, one probably needs to learn both of them. Still, there are some points…
Difference between Break and Continue | Break vs. Continue
Difference between Break and Continue Break Continue Break is used to terminate the execution of the loop. Continue is not used to terminate the execution of loop. It breaks the…
Loops in PHP | Control Structure in PHP
1. While Loop in PHP : Syntax : while(expression) { Statements to be executed; } It executed the nested statements repeatedly as long as the while expression evaluates to TRUE.…