Posts Tagged ‘object’

PHP Tutorial: Protect your Website with CAPTCHA: Create your own: Part 1

Learn how to protect your website from crawlers and SPAM robots. Create your own CAPTCHA using the PHP GD library. The Font used in this tutorial is called Anonymous Clippings and was obtained at dafont.com www.dafont.com In this part we create the captcha class and declare all the static methods that we will be using. Also the font file was base64 encoded and was assigned to a variable in order to embed the font into the PHP file. This will make the captcha class portable.

PHP Tutorial: Protect your Website with CAPTCHA: Create your own: Part 1

Learn how to protect your website from crawlers and SPAM robots. Create your own CAPTCHA using the PHP GD library. The Font used in this tutorial is called Anonymous Clippings and was obtained at dafont.com www.dafont.com In this part we create the captcha class and declare all the static methods that we will be using. Also the font file was base64 encoded and was assigned to a variable in order to embed the font into the PHP file. This will make the captcha class portable.

PHP Tutorials: PDO: Affected Row Count (Part 3/7)

Part 4/7: www.youtube.com Using a PDOStatement method, we can return the amount of rows that were affected by our last query, which can be very useful! Official website phpacademy.org Support Forum http Follow us on Twitter! twitter.com

PHP Tutorial: OOP Object-oriented Programming

WEBSITE: betterphp.co.uk In this video I make an attempt to explain the advantages of using classes and objects.

PHP Tutorial: Protect your Website with CAPTCHA: Create your own: Part 2

Learn how to protect your website from crawlers and SPAM robots. Create your own CAPTCHA using the PHP GD library. The Font used in this tutorial is called Anonymous Clippings and was obtained at dafont.com www.dafont.com In this part we develop the captcha class and implement all the static methods that we will be using. Using the output buffer we return the image base64 encoded into the html file. We test the captcha using a form that requires the user to input the code that appears in the image.

OOP PHP Tutorial 3 – Instance Variables and Access Modifiers

Please Rate Comment and Subscribe. Visit my website www.creativitytuts.org Follow me on Twitter

PROGRAMMING TUTORIAL- OBJECT ORIENTED IN PHP

This PHP tutorial takes you from beginner level in Object Oriented Programming all the way to Pro level.Download full tutorial for 7$ from:tinyurl.com

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] OOP Tutorial #6

Public, private and protected – The rematch! And this time… It’s processable. Well that’s retarded, but it’s visibility again! Woohoo!

PHP Tutorial: Creating .zip files [part 01]

WEBSITE: betterphp.co.uk In this video I show you how to add files to a zip file using the ZipArchive class.