fixed images, website resolution resize Digital Media UI / UX Design by PRYMA …; <html> <head> <title>[AA]BlackOps Clan</title> <meta http-equiv="content…;>Thank you for visiting 1ST[AA] Clan Website = HOSTING: BlackOps [AA]MIXED/TDM/HC IP: 173.199.80.6:3074… creat a users.sql for this scripts Programming Databases by raminr63 … = "root"; $MySQL_Pass = "pass"; $MySQL_DB = "blackops"; function ParsePost( ) { $username = ''; $password = ''; $post =…die('Could not connect: ' . mysql_error()); } mysql_select_db("blackops", $con); $result = mysql_query("SELECT id FROM … drampower led red :S Hardware and Software Hardware by haedallis … ddr5 Sapphire Cpu coller Scythe ninja mini M/b Foxconn Blackops (s775,DDR3,x48) and i have windows vista 32 bit… Re: internet explorer runs on its own Hardware and Software Information Security by Whiteglint …(x86)\steam\steamapps\common\call of duty black ops\blackops.exe | "{10CF3C3E-DE7E-4C86-9903-81344A5C9CA5}"…(x86)\steam\steamapps\common\call of duty black ops\blackops.exe | "{E1ABB018-2029-401B-BE92-2C7F13EC2449}"…x86)\steam\steamapps\common\call of duty black ops\blackops.exe | "{F0B150CB-ACF7-4E67-9E8B-764E5C25E8B9}"… Re: Antimalware doctor and rootkits Hardware and Software Information Security by boredguy …:\program files\steam\steamapps\common\call of duty black ops\blackops.exe | "{2A0FD75F-9BE4-48BF-9193-A45B1BABBAE2}" = protocol=17…:\program files\steam\steamapps\common\call of duty black ops\blackops.exe | "{4AB7571A-BEC4-4376-A3AF-67FFB49BDF0E}" = protocol=6… Re: Call of Duty: Black Ops Ups the Ante With Wager Mode; Reveals New Perks, Killstreaks Community Center Geeks' Lounge by mjhurdle I may be in the minority, but I am really looking forward to BlackOps. I understand it will not be a complete overhaul of MW2. Even if it is similar to MW2, I still enjoy playing MW2, so the new weapons, game modes, and maps make it seem well worth the money I will spend on it. Just my 2 cents Re: fixed images, website resolution resize Digital Media UI / UX Design by Arkinder They're moving because 500px from the top is 500px from the top. Try a fluid style of positioning them. Regards, Arkinder Re: fixed images, website resolution resize Digital Media UI / UX Design by PRYMA ? not sure if i follow what your saying? Re: fixed images, website resolution resize Digital Media UI / UX Design by teedoff This seems to work for your fixedimageright div. [CODE]#fixedimageright { background-image: url("images/soldier2.png"); float: right; height: 588px; width: 300px; margin-left: 900px; position: absolute; top: 125px; }[/CODE] Only tested in FF. Re: creat a users.sql for this scripts Programming Databases by pritaeas CREATE TABLE `users` ( `id` bigint(20) unsigned NOT NULL auto_increment, `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `sid` varchar(255) default NULL, PRIMARY KEY (`id`), UNIQUE KEY `idx_username` USING BTREE (`username`) ) Re: creat a users.sql for this scripts Programming Databases by raminr63 Thank you i love you :D but i have some problem becuase i use Login System v.2.0 for manges my users and this login system is use this sql: can it possible for you enter your posted sql to this login system sql. # # dbtables.sql # # Simplifies the task of creating all the database tables # used by the login system. … Re: creat a users.sql for this scripts Programming Databases by pritaeas Just add the missing columns from my example into the table structure of your script. Re: creat a users.sql for this scripts Programming Databases by raminr63 Thank you but i don have enough nowledge about that may i pleas an request form you that you do it for me. Thank you. Re: creat a users.sql for this scripts Programming Databases by pritaeas Trying yourself will make you learn quicker, than just copying will. Re: creat a users.sql for this scripts Programming Databases by raminr63 ok i try but in your sql cod the PRIMARY key is id : > PRIMARY KEY (`id`), and in this cod the username is primary: > username varchar(30) primary key, and in your example the id like that: > `id` bigint(20) unsigned NOT NULL auto_increment, but in this code : > userid varchar(32), also and what is it in you example : > … Re: creat a users.sql for this scripts Programming Databases by pritaeas That depends on what you want to use. The last key in my example is to ensure uniqueness of the username, since I use an id as primary key.