Posts Tagged ‘Php Tutorials’

PHP Tutorials: Unique Visitor Counter (Part 1)

Friday, May 21st, 2010


This works in the way that if a user has visited the page before (based on their IP address), their hit will not be counter. If a visitor is new to the page, a hit will be counter and their IP address stored for future checking.

PHP Tutorials: MySQL (Part 2)

Friday, May 21st, 2010


Connecting to the database, error handling and selecting your database.

PHP Tutorials: SQL Injection (Part 1)

Friday, May 21st, 2010


Learn what SQL injection is and how to get access to an account without a password.

PHP Tutorials: MySQL (Part 1)

Friday, May 21st, 2010


Using phpMyAdmin to create a new table on a database. The basics!

PHP Tutorials: Create a Search Engine (Part 1)

Friday, May 21st, 2010


Create a search engine for any purpose. This search engine can be implemented anywhere to search your website content, or to search pages on the web.

PHP Tutorial: Installation and The Basics

Friday, May 21st, 2010


To get php and apache installed use xampp. xampp is free and contains php / apache (around 33mb) 1. Download and Install XAMPP from here: www.apachefriends.org 2. on windows go to C:\xampp it should have a folder called htdocs. If you put a file called foo.html into the htdocs folder you should be able to access it by going to localhost or /foo.php. There’s also something called WAMP www.wampserver.com There’s a lot of php tutorials out there just search google www.google.com Request tutorials here youtube.jimmyr.com More PHP TUtorials here killerphp.com Some people have recommended other editors www.scintilla.org www.pspad.com en.wikipedia.org www.context.cx %%programming

PHP Tutorials: Dynamic pages (Part 1)

Friday, May 21st, 2010


Creating a standard webpage template, only the content changes when a link is clicked. Saves time duplicating each file, and makes it a lot easier if something needs to be changed, like a menu item, header, or footer.