Recently i needed to increase memory limit for executing a PHP script. And i think there are many of you who don’t know how to … Read more »
PHP, MYSQL, CSS, LINUX TUTORIALS
Category Archives: PHP Tutorials
How to transform arrays to objects and object to arrays
I haven’t wrote any tutorial since two months (i’ve been very busy lately). Anyway, now i’ll show you a simple way to transform arrays to … Read more »
Video Tutorial: How to create a Like/Unlike button with jQuery and PHP
Hi here! In this video tutorial you’ll see how to create a simple like/unlike button using jQuery and PHP. Download the code here: http://cl.ly/4hDk Download … Read more »
Using PHP cookies
Awhile ago we’ve talked about handling sessions in PHP witch is used to store data for a short time. Now i’ll show you how to … Read more »
Create a file using PHP
Now i’ll show you how to create a file using PHP’s function fopen() Example: View Code PHP $fileName = ‘myFirstFile.txt’; $fh = fopen($fileName, ‘w’) or … Read more »