To upload a file to ftp you need a html form where you can insert the ftp details, like the ones described above:
Posted on 02 February 2012.
To upload a file to ftp you need a html form where you can insert the ftp details, like the ones described above:
Posted in PHPComments (0)
Posted on 01 February 2012.
You can use the method below to prevent duplicate form submission or form re-submission using PHP. This method is simple to implement and does not require JavaScript.
Posted in PHPComments (0)
Posted on 31 January 2012.

PHP 5.4.0 is planned to be released on February, 2 2012. By the time you are reading this, it may already been out. It is a result of many months of development.
Posted in News, PHPComments (0)
Posted on 30 January 2012.
gettext — Lookup a message in the current domain
Posted in PHPComments (0)
Posted on 09 January 2012.
Came across this today messing around with WAMP server. The index page it has has some images. I was looking to replace them as i was feeling lazy about creating an Index page
Posted in PHPComments (0)
Posted on 09 January 2012.
A couple of weeks ago I was going to work on a new project, it was a directory-like kind of app. One the things this application had to do was let users add their websites to their profiles, and so the first question came up, “how am going to get their website’s title and meta tags?”.
Posted in PHPComments (0)
Posted on 06 January 2012.
With object orientated languages came the concept of the try-catch block to better manage exceptions and application crashes, and from PHP 5 onwards, the popular web server-side scripting language too adopted this ideology.
Posted in PHPComments (0)
Posted on 12 December 2011.
Here is a cool trick you might not know if you want to return multiple values from a function and assign them to variables with different names each.
Posted in PHPComments (0)
Posted on 24 November 2011.
$myText = (string)$myVar;
There are more details for string casting and conversion in the Strings section of the PHP manual, including special handling for booleans and nulls.
Posted in PHPComments (0)
