PHP pabulum

Getting Child

By admin at 20 November, 2008, 12:26 pm

During my project, I need a code to show the items and it’s corresponding child, of certain category. So, finally I come up with this code. If you are also in sort of such problem and wondering how to get the child of its parent (tree),then this piece of code may acts as your helper.
This [...]

Read More >>

Accessory in file upload

By admin at 25 July, 2008, 10:33 am

Before allowing to upload file, you make like your users to check and secure the file.You may like to check extension and allow particular file (eg.image file only), check size, and others.So, I am listing some accessory which you may wish to have.
[ function checking extension of the file ]
You can check the [...]

Read More >>

How to limit file size during file uploading using PHP?

By admin at 24 July, 2008, 2:39 pm

I expect that the previous post regarding to the file upload becomes beneficial to you. Now let us become more specific. You may like to restrict user in many circumstances. So, today I am going to deal with the restriction made to the file size during the file uploads. There may be many solutions. [...]

Read More >>

Uploading the files using PHP

By admin at 22 July, 2008, 2:00 pm

I think you have got a lot of tutorial regarding to the file upload. Uploading a file in PHP is not a great deal. If you are still confound and searching for the uploading stuff then let me help you. Do not worry, it’s simple. You may just copy and paste to use it.
Firstly you [...]

Read More >>

Counting the file that has been downloaded

By admin at 16 July, 2008, 9:58 am

In former post related to the download, I have tried showing how can we let our files to get downloaded by clients. Now next thing is, you may also want to count the numbers of files that have been downloaded. So my main motive to place this post is to help you count you files [...]

Read More >>