PHP include

Submitted by joken on
In PHP, it is necessary to use PHP include command. Because include takes a file name and simply inserts that file content into the script that issued the include command. Including files saves a lot of work, it means that you can create a standard header, footer and menu file that is available to all web pages.

PHP Comments

Submitted by joken on
One of the best programming practice is using a Comment. A comment is a string code or text within PHP or any programming languages that is not visible during the execution in your web browser. And it provides the feedback to the developers or it temporarily disable the code and the most important thing is that comment serves to give some information about the code. In PHP, there are two types of Comment.

Excel Payroll template

Submitted by nostradamus1566 on

This is an Excel Payroll template. Is demonstrates how to calculate payroll for any number of employees and to make the appropriate deductions. It works in Excel 2003 and above. It demonstrates to the learner how to use the built-in functions and do calculations across different pages. You can learn a lot from studying the formulas and customize this spreadsheet for your payroll. Here are a few

Musical Composition

Submitted by mic493 on
This is one of my little inventions. It is royalty free, you can decorate to your liking. Knowing that generates a MIDI file that you can import software. Music to arrange with the instruments of your choice. Namely that the main melody is channel 1 and channel 2 agreements. My compositions will serve as an example to use. Have fun, Michaël

Online Farmers Contracting System

Submitted by kipruzac on
This Project is developed by cherwon kipruto zacharia for Kenya seed company limited . The major aim is to reduce conjestion on farmers who are companies outgrowers. For more information , contact [email protected] or you can add zacharia kipruto cherwon on facebook or follow @kipruzac on twitter or contact me by mobile +254716654532

Getting The Difference of Two Dates Using PHP

Submitted by argie on
This tutorial will teach you on how to get the difference of the two dates using PHP datetime function. You will also learn in this tutorial on how to use tigra calendar in making popup date. To understand more fallow the step bellow.

Creating Our Form and Connecting Tigra Javascript

The code bellow will give us the form that allow us to pick two date to be subtracted. The selection of date is powered by tigra popup calendar.

PHP Echo

Submitted by joken on
The echo command in PHP is used to output the text in the web browser. And echo is not a function, but it is a language construct. Meaning you don’t need to use a parenthesis with it. Outputting a string In outputting a string in PHP, we use echo. We place a string variable or we can use quotes, like what we are going to do in this example. The code below we output a “Hello everyone!”.