Wednesday, May 5, 2010

Flickr

This is a test post from flickr, a fancy photo sharing thing.

Wednesday, March 31, 2010

PHP Tutorial User Registration SQL

A quick and easy user registration using php, sql and phpmyadmin.


For full size and source codes: http://www.neoblob.com/phpsquad/tuts/...

SQL:
CREATE TABLE `user` (
`id` int(10) unsigned NOT NULL auto_increment,
`username` varchar(20) NOT NULL default '',
`password` varchar(50) NOT NULL default '',
`email` varchar(40) NOT NULL default '',
`ip` varchar(20) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

Make A Website Publicly accessible with Port Forwarding Linksys Router networknerd007 41 videos

This tutorial shows how to make your Apache/XAMPP for Windows XP/Vista or Linux Ubuntu web server accessible to the public people over the internet by properly configuring and forwarding your ports through your router. I use a Linksys WRT54G in this tutorial, but it should be really close to the same on all Linksys routers and fairly familiar on other brands as well.

Tuesday, March 30, 2010

Build a Web Form in Dreamweaver!

In the following video we will build a web based form using html. We will cover using Labels, Text Fields, Text Boxes, Radio Button Groups, Checkboxes, The Clear and Submit buttons, Drop down Menus, as well as many of the properties you can edit while building the form. The form will be ready to be linked with a PHP file for use when you are finished with this video. Get ready to learn a whole lot! Have fun and check out http://www.tutvid.com for more great videos and downloads!

PHP Tutorial - 23 - Adding Tables to MySQL Database

PHP & MySQL Tutorial 08: logging in with MySQL Part 1

This tutorial goes over the concept of a login system in PHP while using sessions(to maintain the login status) and MySQL(a database that holds the information).
[click more info to see link to sources online]
(Hint: don't forget about Part 2 http://www.youtube.com/watch?v=ir12sx... I first go over how to make the login page, then the table in the database. After that, I make a user through PHPMyAdmin(the next tutorial will likely go over registering users). I then code how to validate that user and if they are validated, set the session information. After the session information is acceptable, they can go to a "members only" page which only allows identified people in. Then a way to log out.
This tutorial is pretty much a walkthrough in concept of a mysql login system.

PHP Basics: Install a Webserver with PHP and MySQL (Windows)

Get started with PHP by installing a webserver with PHP and MySQL support. For ease of use and convenience, i'll be showing you how to install XAMPP available from http://www.apachefriends.org/en/xampp...