Take a look at the following 20 Excellent AJAX Effects You Should Know, you might learn something from it.
There are a few special techniques or effects that can spice up just about any web page. These are the top 20 Ajax effects that every web developer should know. They’re essential parts of any web developer’s toolbox. If you haven’t seen them yet, you no doubt will in your future web development endeavors.
The 20 effects are:
- TextboxList meets Autocompletion
- Ajax IM
- LiveValidation
- Inline Editing
- Ajax Upload
- Fancy Upload
- ClickHeat Clicks Heatmap
- Ajax Mail Form
- Ajax Directory Manager
- Ajax Email Client
- Improve Form Usability with Auto Messages
- qGallery
- Ajax Star Rating
- CakePHP Ajax Form
- Amberjack Site Tours
- Prototype UI
- JCrop
- jQuery Auto-tabbing Plugin
- Sort Table Rows with Ajax
- DrasticMap
Link: 20 Excellent AJAX Effects You Should Know
Zend Framework is an open source, object-oriented web application framework implemented in PHP 5 and licensed under the New BSD License. Zend Framework—often referred to as ZF—is developed with the goal of simplifying web development while promoting best practices in the PHP developer community. Read more…
Introduction
By following the steps below for each version of Windows you will be able to change the operating systems behavior so that you can see hidden and protected files. In this way you will have full control over your files.
- Intro
- Windows 95
- Windows 98
- Windows ME
- Windows NT
- Windows 2000
- Windows XP
- Windows Vista
Read more…
In this advanced tutorial i will teach you the steps required to create a custom build login/member system with PHP.
The system itself ofcourse has alot of room for improvements, also, it’s very easily expandable, i’ve chosen to work in a modular way, so that if you change something you only have to change it in 1 file. I’ve done this by using functions, this script is a good example of the real power of PHP.
Features:
- Registration
- Lost password
- Various checks on passwords and usernames
- users can change their password
- Passwords are stored in a database with a seed added to it and they have sha1 encryption
- Easy to adjust & use
Requirements:
- Mysql database
- a php & mysql enabled host
- php mail() enabled host
- ftp access to your website
Overview
Steps:
- Creating the mysql table
- Creating a db_connect.inc.php file
- Creating the header.php file
- Creating the footer.php file
- Creating the index.php file
- Creating the login.php file
- Creating the logout.php file
- Creating a function.inc.php file
- Creating the mail.functions.inc.php file
- Creating the display.functions.inc.php file
- Creating the login.functions.inc.php file
- Creating the user.functions.inc.php file
- Creating the validation.functions.inc.php file
- Creating the lostpassword.php file
- Creating the changepassword.php file
- Creating the register.php file
- Creating the activate.php file
Read more…
Categories: PHP Tags: advanced tutorials, content management, database, databases, functions, howto, login, members, mysql, PHP, php5, script, tutorial
In this tutorial, we’ll see how the PHP server-side scripting language can be used to send email, and explore how to send complex message types such as HTML email or emails with file attachments.
For convenience we will be using PHPMailer in this tutorial.
PHPMailer is a class for PHP that provides a package of functions to send email. The two primary features are sending HTML Email and e-mails with attachments. PHPMailer is an efficient way to send e-mail within PHP.
Read more…
Categories: PHP Tags: attachment, email, emails, guide, help, how to, howto, HTML email, mail, PHP, PHPMailer, tutorial
Want to export your Mysql data to a CSV(comma seperated value) file? In this tutorial i will show you how to export your data from Mysql into a CSV file.
Read more…