Mindblown: a blog about philosophy.
-

PHP Encoder
Hi Everyone here i am introducing a PHP Encoder tools. With this tool you can encode your PHP code in secure code. once you encode code only execution time web-server will decode it. and nobody can decode it. This is my first beta version release so this tool will expire after 1 July 2015. I…
-
Getting Started with OpenCart
Opencart is Open Source E-Commerce portal. With OpenCart you can start your online E-Commerce website within 10 minutes. OpenCart is widely used E-Commerce framework and it comes after Magento.
-
Threading in Python
Threading is one of best feature of programming language to perform multiple jobs at sametime.It’s one kind of parallely task which means you can run another task while one is going on. Let’s take real time example of kitchen , you put eggs in your microwave to boil while it gettings ready you can collect…
-
Getting Started with CakePHP
CakePHP is widely used framework of PHP. It is completely build in MVC structure and almost have all built in functions which boost your web application. What you need: A running web server. I am going to assume you’re using Apache, though the instructions for using other servers should be very similar. I might have…
-
Show limited words in PHP from string with HTML tags
Hi, Here i have create another function called “truncate”. With this function you can show limited words with HTML tags. I know there is a function in PHP “SUBSTR”. but the main issue i face with this is this will also remove HTML tags, which mean when any tag starts then that tags will not…
-
SEO friendly URL generator
Hi, here is a function which I create for generating SEO friendly URL. first we have to create a function called “friendlyURL”. here is a code <?php function friendlyURL($inputString){ $url = strtolower($inputString); $patterns = $replacements = array(); $patterns[0] = ‘/(&|&)/i’; $replacements[0] = ‘-and-‘; $patterns[1] = ‘/[^a-zA-Z01-9]/i’; $replacements[1] = ‘-‘; $patterns[2] = ‘/(-+)/i’; $replacements[2] = ‘-‘;…
Got any book recommendations?