Posts Tagged ‘developphp’

simpleXML PHP tutorial learn to parse any XML files and RSS feeds

Learn to parse any XML based feeds or data using PHP and a for loop. You can target any popular website RSS and rip data straight from their feeds using minimal code that is very easy to understand. We use the simplexml_load_file() function to make an XML object out of the XML file online. An XML object that can then be parsed easily enough with a PHP for loop. The simplexml_load_file() function is part of the simpleXML extension of PHP.

PHP Tutorial Parse Multiple Select HTML Form Fields – DevelopPHP dot com

Script: www.developphp.com Adam teaches how to use PHP to parse multiple selection form fields in your HTML or HTML5 forms. The resulting variable is an array if you instruct the select field to handle multiple options. We have to break this array down to split the selections for our data processing needs, or you can choose to save the serialized complete array into one MySQL database field.

15. E – Commerce Website Tutorial – PHP Shopping Cart Money Format Currency

www.developphp.com In this 15th video we will learn to format money and numbers using the money_format() and number_format() functions in PHP. The E – Commerce Web Site we will be assembling is one in which all of the inventory is in a MySQL database and we offer a custom PHP cart for a unique shopping experience.

8. E – Commerce Website PHP MySQL Tutorial – Product Display Page

www.developphp.com In this 8th video we will begin creating the dynamic product display page, and also discuss payment gateway shopping cart options. The E – Commerce Web Site we will be assembling is one in which all of the inventory is in a MySQL database and we offer a custom PHP cart for a unique shopping experience.

11. E – Commerce Website Tutorial – Display the PHP Shopping Cart

www.developphp.com In this 11th video we will gather all the variables for each cart item by accessing our MySQL database. This way we can design our cart to look any way we wish. The E – Commerce Web Site we will be assembling is one in which all of the inventory is in a MySQL database and we offer a custom PHP cart for a unique shopping experience.

PHP Image Watermark Function Tutorial How To Apply Watermark On the Fly

Copy Paste Code: www.developphp.com Master PHP Image Processing with Adam Khoury in this Video Textbook Series. In this video we learn how to apply watermark to any uploaded images on the fly by applying another custom function to our image processing library file.

PHP Image Filter Name Rename Tutorial Upload jpg gif png On the Fly

Copy Paste Code: www.developphp.com Master PHP Image Processing with Adam Khoury in this Video Textbook Series. In this video we learn how to filter or rename an uploaded image file name so that strange characters or spaces in the name do not present issues. In our example the function will work for renaming and filtering JPG, GIF, and PNG type of images file names.

PHP Image Convert Function Tutorial Upload Type jpg gif png On the Fly

Copy Paste Code: www.developphp.com Master PHP Image Processing with Adam Khoury in this Video Textbook Series. In this video we learn how to convert images from one type to another using the GD library functions.

PHP Image Crop Thumbnail Function Tutorial jpg gif png Resize On the Fly

Copy Paste Code: www.developphp.com Master PHP Image Processing with Adam Khoury in this Video Textbook Series. In this video we learn how to script a universal PHP image crop function that runs inline with out resize function created in the last lesson. It uses a handful of functions from the GD library in PHP. In our example the function will work for cropping JPG, GIF, and PNG type of images universally.

jQuery Ajax PHP Tutorial : Swap out page content on your website using PHP

Get Source Code: www.developphp.com Learn to use jQuery / Ajax post mechanism to communicate to PHP in order to swap out page content, or access a mysql database, or whatever the hell you want.