According to the problem posted in daniweb.com by [url=http://www.daniweb.com/members/obimobs/910602]obimobs[/url], i'm create an example simple login using php and mysql.
[code]
Login Form
Login Form Example
To create many links / menu with a few code, we can looping it from array data. First, we hold the link and also it text into associative array. Here is the simple code:
[code]
Create Menu with PHP Associative Array
Create Menu with PHP Associative Array
Here is PHP simple login form. In the code below we can see how the script work to make user can login into authenticate page.
[code]
Kelola Bukutamu
, Status () [
[/code]
You can download the complete files below:
Here an example of how to create a dynamic web page with HTML, CSS, and PHP. First we create an index.php file shown below:
[code]
Next step is creating a connection to database by create an external file called dbase.php place in database folder, shown below:
[/code]
Then we include meta.php file contained an ...
Here is a simple Guestbook with PHP and MySQL database. We learn how to create connection to MySQL database with PHP. First create a database called "myweb", then we create table called "guestbook".
[br]
[h3]Create database[/h3]
[code]
CREATE DATABASE `myweb` ;
[/code]
[br][br]
[h3]Create table[/h3]
[code]
CREATE TABLE `guestbook` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`name` VARCHAR( 30 ...
Here is a simple PHP Session to hold information from one single user and available in all pages. If we visit another pages, the data store in session variable available to access.[br]
When user input a data in a form, then session will hold the information and available in another pages. ...
CAPTCHA is a type of challenge-response test used in computing as an attempt to ensure that the response is not generated by a computer.
[br][br]
A CAPTCHA is a means of automatically generating challenges which intends to:
[ul]
[li]Provide a problem easy enough for all humans to solve.[/li]
[li]Prevent standard automated software from filling ...
If we have a website or content management system that works happily, but the addresses that it produces are something like this:
[code]
www.oursite.com/page/page.php?id=3
[code]
This is fine but have you considered the following:
[ul]
[li]This may not be the most search engine friendly address, particularly if it is long and unwieldy.[/li]
[li]It is not so easy ...
To Capture the visitor that visit your website, just download and use the script in this page.[br][br]
[h3]What Captured?[/h3]
[ol]
[li]The url of page, this will capture the url of each page that visitor visited.[/li]
[li]The date of visitor come to the pages.[/li]
[li]The browser that visitor use when they come to your web pages.[/li]
[li]The ...