PHP

Learn PHP programming with tutorials, server-side scripting examples, web development techniques, and practical source code for web applications.

php mail function

How to Send Email using PHP

A detailed guide on PHP mail sending options with examples of using the built-in mail function(), PHPMailer, Symfony, and third-party mail service providers such as Amazon SES, SendGrid and GetResponse.

programming

The Future Of Programming: Top Languages All Programmers Should Know

Many jobs in the IT industry require mastery of programming languages. If you are planning to establish a career that requires mastering these skills, it’s a good idea to look into them well ahead of time. Like any other skill, programming takes effort, time, and money to learn. Because of this, you want to make sure you obtain the knowledge required in the position you are aiming for. Here are the top programming languages every programmer should know.

Oracle PHP Connectivity

How to use PHP with Oracle Database 11g

This source code shows you how to connect to Oracle Database 11g and execute queries using the PHP. First of all it sets the ORACLE_HOME and ORACLE_SID Environment variables using the putenv() method. Note that to run this code, you will need PHP OCI8 extension enable in php.ini file.

random numbers

Printing numbers within a range in PHP

The following PHP source code shows that how to print random numbers within a range using. It uses rand() function to return the random numbers within a predefined range. The srand() function is used to provide the seed or arbitrary int number.

Scroll to Top