Please understand i am very new to this and i am trying very hard to read and write code. Any help is greatly appreciated.
K, i have one more table question real quick. It took my db query write, but i am not getting the name's of my custom profilefields, as seen in the picture below.
Let's say you have custom profilefields built in, and you want the title to be
$aa= 'Dog';
$a= 'What kind of dog?';
This is my query write
PHP Code:
$db->query_write("INSERT INTO " . TABLE_PREFIX . "profilefield (profilefieldid,title,description,required,hidden,maxlength,size,displayorder,editable,type,data,height,def,optional,searchable,memberlist,regex,form,html) VALUES (50,'".addslashes($aa)."','".addslashes($a)."',0,0,'20','20','50','1','input','','0','0','0','0','0','0','','0')");
So Now i have gone into mysql database and manually want to add 'title' and 'description' but i need these two new fields to understand that they are to pull the title and descrition from my custom profilefield.
Now,
Field would = title
Type would = ? ( i don't understand how to get this to pull my different characters/title's)
Length/Values1 would = 6 would be my guess on this one. (dog has only 3 characters) right?
Collation would = ? utf8 (i would guess)
Attributes would = UNSIGNED (again, that is just a guess on my part.)
Null would = NOT NULL
Default2 would = ? (no idea since i am trying to get this to pull from custom profile fields.)
Extra would = leave blank
I am not sure if i am asking this right at all, but i attached a picture of what it is starting to look like on my page, and what i am confused about.
Thanks, doug