Thanks for your replies and i got the general
Message .
This "hopefully" explains my database structure:
CODE
-- phpMyAdmin SQL Dump
-- version 2.11.6
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 01, 2008 at 02:58 AM
-- Server version: 5.0.51
-- PHP Version: 5.2.6
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `users`
--
-- --------------------------------------------------------
--
-- Table structure for table `users_info`
--
CREATE TABLE `users_info` (
`id` int(30) NOT NULL auto_increment,
`User_Name` char(15) NOT NULL,
`Pass_Word` char(20) NOT NULL,
`Age` int(2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=49;
--
-- Dumping data for table `users_info`
--
INSERT INTO `users_info` (`id`, `User_Name`, `Pass_Word`, `Age`) VALUES
-- //I cut some out
(30, 'ciachyou', 'PassworHere', 192),
(31, 'ciachyou', 'PassworHere', 192),
(32, 'ciachyou', 'PassworHere', 192),
(33, 'ciachyou', 'PassworHere', 192),
(34, 'ciachyou', 'PassworHere', 192),
(35, 'ciachyou', 'PassworHere', 192),
(36, 'ciachyou', 'PassworHere', 192),
(37, 'ciachyou', 'PassworHere', 192),
(38, 'ciachyou', 'PassworHere', 192),
(39, 'ciachyou', 'PassworHere', 192),
(40, 'ciachyou', 'PassworHere', 192),
(41, 'ciachyou', 'PassworHere', 192),
(42, 'ciachyou', 'PassworHere', 192),
(43, 'ciachyou', 'PassworHere', 192),
(44, 'ciachyou', 'PassworHere', 192),
(45, 'ciachyou', 'PassworHere', 192),
(46, 'ciachyou', 'PassworHere', 192),
(47, 'ciachyou', 'PassworHere', 192),
(48, 'ciachyou', 'PassworHere', 192);
I used "Pass_word" because i read an introduction on MYSQL injections and changed that one piece of code or just to annoy other people it might have been 50/50 who knows
At 2am i would love to see the names of your variables.

EDIT: Thanks for the links
This post has been edited by Clearman: 31 May, 2008 - 05:15 PM