Install PHP Mcrypt on CentOS 6

December 29th, 2011 by Youzhny 
CentOS 6 still doesn’t by default include mcrypt in it’s distribution on repositories. (more…)

WordPress – How to increase PHP Memory Limit ?

September 5th, 2011 by Youzhny 
WordPress is a great blogging tool or a content publishing platform that comes with a rich set of features. Using the in-built appealing features you can create a professional looking site or blog just within few steps. (more…)

Introduction to Joomla Content

December 1st, 2010 by Youzhny 
A new Joomla video tutorials describing the Content concept and the difference between Content and Component. This screen cast is made by Linda Watson and he does a nice analogy with a skyscraper.

Learning CCK for Drupal

December 1st, 2010 by Youzhny 
Anybody that would like to learn Drupal should know about CCK module (content construction kit). CCK is one of the most useful Drupal modules mainly because of it’s use of creating new and complex content types. In Drupal 7, CCK will be included in core.

MAMP PHP cURL and SSL

November 13th, 2010 by VarIncart 
I currently develop PHP based websites on a Mac using MAMP. When testing the Interspire Email Marketer API on a local version of a site posting data through to an https:// URL with cURL, I discovered that the version of cURL on MAMP has some issues with certs and SSL. Original code // My original code posted some XML through to an https URL like so: $ch = curl_init('https://www.example.com/example-api.php'); curl_setopt($ch,...

W3Schools PHP Certificate

November 12th, 2010 by aBisona 
W3Schools offers an Online Certification Program. The perfect solution for busy professionals who need to balance work, family, and career building. More than 6000 certificates already issued! Document Your Skills Knowledge is power, especially in the current job market. Documentation of your skills enables you to advance your career, or help you to start a new one. Get a Certificate Getting a...

PHP Quiz

November 12th, 2010 by aBisona 
You can test your PHP skills with W3Schools’ Quiz. The Test The test contains 20 questions and there is no time limit. The test is not official, it’s just a nice way to see how much you know, or don’t know, about PHP. Your Score Will be Counted You will get 1 point for each correct answer. At the end of the Quiz, your total score will be displayed. Maximum score is 20 points. Good...

PHP Zip File Functions

November 12th, 2010 by aBisona 
PHP Zip File Introduction The Zip files functions allows you to read ZIP files. Installation For the Zip file functions to work on your server, these libraries must be installed: The ZZIPlib library by Guido Draheim: Download the ZZIPlib library The Zip PELC extension: Download the Zip PELC extension Installation on Linux Systems PHP 5+: Zip functions and the Zip library is not enabled by...

PHP XML Parser Functions

November 12th, 2010 by aBisona 
PHP XML Parser Introduction The XML functions lets you parse, but not validate, XML documents. XML is a data format for standardized structured document exchange. More information on XML can be found in our XML Tutorial. This extension uses the Expat XML parser. Expat is an event-based parser, it views an XML document as a series of events. When an event occurs, it calls a specified function to...

PHP String Functions

November 12th, 2010 by aBisona 
PHP String Introduction The string functions allow you to manipulate strings. Installation The string functions are part of the PHP core. There is no installation needed to use these functions. PHP String Functions PHP: indicates the earliest version of PHP that supports the function. Function Description PHP addcslashes() Returns a string with backslashes in front of the specified characters 4 addslashes() Returns...

PHP SimpleXML Functions

November 12th, 2010 by aBisona 
PHP SimpleXML Introduction The SimpleXML functions lets you convert XML to an object. This object can be processed, like any other object, with normal property selectors and array iterators. Some of these functions requires the newest PHP build. Installation The SimpleXML functions are part of the PHP core. There is no installation needed to use these functions. PHP SimpleXML Functions PHP: indicates...

PHP MySQL Functions

November 12th, 2010 by aBisona 
PHP MySQL Introduction The MySQL functions allows you to access MySQL database servers. Installation For the MySQL functions to be available, you must compile PHP with MySQL support. For compiling, use –with-mysql=DIR (the optional DIR points to the MySQL directory). Note: For full functionality of MySQL versions greater than 4.1., use the MySQLi extension instead. If you would like to install...