Wednesday, November 15, 2017

PHP Tutorial 2 - PHP Installation

What Do I Need To Start PHP?

To start using PHP, you can:
  • Find a web host with PHP and MySQL support
  • Install a web server on your own PC, and then install PHP and MySQL
A list with with best web servers you can find here.

Set Up PHP on Your Own PC

However, if your server does not support PHP, you must:
  • install a web server
  • install PHP
  • install a database, such as MySQL
The official PHP website (PHP.net) has installation instructions for PHP: http://php.net/manual/en/install.php

PHP Tutorial 1 - PHP Introduction

What You Should Already Know About PHP

Before you continue you should have a basic understanding of the following:
  • HTML
  • CSS
  • JavaScript

What is PHP?

  • PHP is an acronym for "PHP: Hypertext Preprocessor"
  • PHP is a widely-used, open source scripting language
  • PHP scripts are executed on the server
  • PHP is free to download and use

What is a PHP File?

  • PHP files can contain text, HTML, CSS, JavaScript, and PHP code
  • PHP code are executed on the server, and the result is returned to the browser (client) as plain HTML
  • PHP files have extension ".php"

What Can PHP Do?

  • PHP can generate dynamic page content
  • PHP can create, open, read, write, delete, and close files on the server
  • PHP can collect form data
  • PHP can send and receive cookies
  • PHP can add, delete, modify data in your database
  • PHP can be used to control user-access
  • PHP can encrypt data
With PHP you are not limited to output HTML. You can output images, PDF files, and even Flash movies. You can also output any text, such as XHTML and XML.

Why PHP?

  • PHP runs on various platforms (Windows, Linux, Unix, Mac OS X, etc.)
  • PHP is compatible with almost all servers used today (Apache, IIS, etc.)
  • PHP supports a wide range of databases
  • PHP is free. Download it from the official PHP resource: www.php.net
  • PHP is easy to learn and runs efficiently on the server side
PHP is the best :P

Tuesday, November 14, 2017

Create ZIP file with PHP


This is a script to create zip file containing different files. PHP has a ZipArchive class which can be used easily to create zip files. 
In this post we will learn how to create zip files in PHP. We will create zip files from different files.

// defined an array with names of files
$files = array('audio1.wav', 'audio2.wav', 'audio3.wav', , 'img1.png', 'img2.jpg');

// the name of zip archive
$zipname = 'file.zip';

//create ner class for zip
$zip = new ZipArchive;
//create new zip
$zip->open($zipname, ZipArchive::CREATE);

//make a loop for adding files into zip file
foreach ($files as $file) {
$zip->addFile($file);
}
//close zip
$zip->close();


This script is about creating zip file in PHP in the same location (folder). If we have different files we must defined the full location of files.
$files = array('./folder1/audio1.wav', './folder1/audio2.wav', './folder7/audio3.wav', 'img1.png', 'img2.jpg');