How to configure Virtual Hosting on AppServ phptuts January 18, 2013 With this tutorial, we are going to take a look at the best way to configure a local web server to serve fake domain/subdomains (or… Continue Reading
How to installing Remi Repository on LINUX phptuts January 16, 2013 In this tutorial we will learn how to install and add the Remi Repository into LINUX (RHEL/CentOS 5-6, Fedora 12-17). Follow the simple steps below… Continue Reading
MYSQL: How to DELETE with INNER JOIN phptuts January 11, 2013 MYSQL: How to DELETE with INNER JOIN There are 2 tables, proxy and proxy2, and I need to delete data from proxy. proxy.md5 = proxy2.md5… Continue Reading
How to save animated GIF in Adobe Image Ready phptuts January 10, 2013 Question: I want to make an animated GIF in Adobe ImageReady and save it out as a .gif file. I’ve made the animation Ok, but… Continue Reading
How to find out version of CentOS Linux via SSH phptuts January 7, 2013 Step 1: Log in to SSH. Step 2: You can check centOS version installed on your dedicated derver / VPS using below SSH command: cat… Continue Reading
PHP: function strtoul phptuts January 5, 2013 We know function strtoul in C++: converts the string into an unsigned long int according to the base of the number unsigned long int strtoul… Continue Reading
PHP: How to extract string between 2 words phptuts December 13, 2012 How to extract string between two words. How to parse a string between two strings. We offer 3 functions to obtain a string delimited between… Continue Reading
PHP: How to determine the center of a Polygon phptuts December 12, 2012 How to determine the center of a Polygon. Read first: PHP: How to calculate signed area of a Polygon Method 1: Result: array(2) { [0]=>… Continue Reading
PHP: How to check if polygon is concave or convex? phptuts December 12, 2012 How to check if polygon is concave or convex? Note: It is assumed that the polygon is simple (does not intersect itself or have holes)… Continue Reading
PHP: How to check if the vertices of polygon are in clockwise or counter-clockwise order? phptuts December 12, 2012 How to check if the vertices of polygon are in clockwise or counter-clockwise order? There are many of method to check this. We offer some… Continue Reading