250free
courses & lectures available for
User Interface (UI)
Driving User Behavior with Game Dynamics
by
Stanford
on
Youtube
Duration:
1.0 hours
(February 19, 2010) Rajat Paharia, founder and Chief Production Officer of Bunchball, discusses participation engines and the use of game dynamics and ...
About Channel:
Located between San Francisco and San Jose in the heart of Silicon Valley, Stanford University is...
1. The Paradigm Shift from Producer to User Innovation
by
MIT OpenCourseWare
on
Youtube
Duration:
0.99 hours
MIT 15.356 How to Develop Breakthrough Products and Services, Spring 2012 View the complete course: http://ocw.mit.edu/15-356S12 Instructor: Eric von ...
About Channel:
Whether you’re a student, a teacher, or simply a curious person that wants to learn, MIT OpenCour...
User Registration Part 4
by
IIT Bombay
on
Spoken Tutorial
Duration:
User Registration Part 4
Inserting inputed information from the user into the database table through query.
mysql_connect("hostname", "username", "password") - Connect to the Database Server with ..
User Login Part 3
Creating session for holding value and destroying that value by destroying session.
start_session() - Starts session to hold information from one pages to other until the session..
User Login Part 2
retrieves information about inputed username and checks whether given password matches with the password in database.
mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') - It is used to ru..
User Password Change Part 1
We learn to obtain old existing password and new password from the user.
start_session() - Hold information from previous pages to session page.
$variable_name=$_SESSI..
User Password Change Part 3
updating the new password in database.
mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') - It is used to run specific queries on our database. Here it updates new password into..
User Password Change Part 2
Checking whether encrypted old password matches with the database password and new password is same as confirm password.
md5("parameter")- encrypts parameter into irrev..
User Login Part 1
Collecting information from user in a form & connecting to authorized database.
mysql_connect("hostname", "username", "password") - Connect to the Database Server with the author..