Home » Archive

Articles in the PHP Category

Magento, PHP, Review »

[8 Mar 2010 | No Comment | 32 views]

PACKT Publishing has published a very useful Magento Developer Guide. This book has practical tutorials with examples. This book will be very useful for PHP Programmers who want to learn Magento architecture, extend the system and add new features to it.

PHP, jQuery »

[20 Jan 2010 | One Comment | 189 views]

In this article, I will be showing you how to create jQuery AJAX tabs in a very simple and easy way.
View Demo || Download Code
Here, tabs.php contains the php code which contains data to be displayed.

PHP »

[14 Jan 2010 | One Comment | 22 views]

Below are the most commonly used php directives. You have to change php.ini file in order to configure php settings. This just means changing these directive’s option and value.
1) short_open_tag = Off

PHP »

[14 Jan 2010 | No Comment | 32 views]

We can view the php settings by creating a php file in our web root with the following code:
Let the name of the file be phpinfo.php
Open http://localhost/phpinfo.php in your browser in your local computer. If you are working online then open http://yoursite/phpinfo.php

PHP, XML »

[23 Oct 2009 | No Comment | 553 views]

In this article, I will be showing you how to create and read xml document with php’s DOMDocument.
The DOM extension allows you to operate on XML documents through the DOM API with PHP 5.
Below is the code to create XML file. I have named the output file ‘example.xml’. For better understanding, I have written comment for almost every line of code.

Javascript, PHP »

[23 Oct 2009 | No Comment | 60 views]

I had to work on multi-dimensional array with javascript and php. I had a multi-dimensional array in php. I had to load it into javascript array and then populate the html selection list.
The challenge for me was to create multi-dimensional array in javascript and populate selection list with for loop in javascript.

PHP, XML »

[23 Oct 2009 | No Comment | 123 views]

In this article, I will be showing you how to create and read xml document with php’s SimpleXML extension.
The SimpleXML extension provides a very simple and easily usable toolset to convert XML to an object that can be processed with normal property selectors and array iterators.

PHP, jQuery »

[29 Jun 2009 | No Comment | 172 views]

Here, I am going to show you how easy it is to upload multiple files with the help of jQuery and PHP.
I suppose that you are familiar with php and apache web server.

PHP, Tips and Tricks »

[29 Jun 2009 | No Comment | 40 views]

Let the page path be: http://localhost/test/admin/index.php
Get the server name/site name of your website:
echo $_SERVER['SERVER_NAME'];

PHP »

[14 Nov 2008 | No Comment | 136 views]

Earlier I had written an article on How to get(view) html source code of a website . I had created an application and that would grab the html code of any website. In this article, I will be writing on how you can modify the looks of a website by changing the html source code after you grab it.
At first the html source code getting part. I have commented in the code for better understanding.