BigEmmaFanz
New Member
- Messages
 - 232
 
- Reaction score
 - 0
 
- Points
 - 0
 
I have downloaded a "users online" script and I need to create a table on a database manually.
 
I'm already in the phpmyadmin and have already chosen the database that I want to use. But I come across this bit of instructions in the manual of the script that I've downloaded.
 
Thing is, I'm new to this so I have no idea what the code means or how I'm supposed to do what they want.
 
The create a table part of phpmyadmin has a Name field and Fields field. Please, any help would be appreciated.
 
	
	
	
		
			
			I'm already in the phpmyadmin and have already chosen the database that I want to use. But I come across this bit of instructions in the manual of the script that I've downloaded.
Thing is, I'm new to this so I have no idea what the code means or how I'm supposed to do what they want.
The create a table part of phpmyadmin has a Name field and Fields field. Please, any help would be appreciated.
		Code:
	
	CREATE TABLE `users_online` (
`visitor` VARCHAR( 15 ) NOT NULL ,
`lastvisit` INT( 14 ) NOT NULL
);