Today I had to import a very large SQL dump file (6 Gb) to a MySQL database using windows command line. If you are using linux it is the sam...

Wow Easy For Beginner
Today I had to import a very large SQL dump file (6 Gb) to a MySQL database using windows command line. If you are using linux it is the sam...
The dream would be that it automatically checks if the alias already exists, and if necessary adds a prefix (or suffix) to ensure each alia...
<?php /** * Base64 encoding that doesn't need to be urlencode()ed. * Exactly the same as base64_encode except it uses * -...
There are "@" issue on multipart POST requests. Solution for PHP 5.5 or later: - Enable CURLOPT_SAFE_UPLOAD. - Use CURLFile instea...
<?php $path = 'zipfile.zip'; $zip = new ZipArchive ; if ( $zip -> open ( $path ) === true ) { for( $i = 0 ; $i < $zip -...
<?php /** * Send a POST requst using cURL * @param string $url to request * @param array $post values to send * @param array $options for...
Introduction My previous article XML Serialization and Deserialization (Part-1) , talk about serialization of object to XML form. In this...
Introduction The article talks about serialization of objects in XML format and deserialization of an XML file back to an object. Serial...