OK, comparing this and the other threads you started, I'm guessing that you've added fields to the socialgroup_form template and now you want to save those fields so you can display them somewhere else? That's a little difficult to explain, and I can't explain it all without seeing more. What you really need to do is examine the vbulletin code in group.php and understand how it works, then you will know how to add your own fields.
But to start with, the html you added to the form needs unique names for each input field and values for the options, like:
Code:
<select name="some_person">
<option value="Başvuru Kapalı">Başvuru Kapalı</option>
<option value="Başvuru A?ık">Başvuru A?ık</option>
// and so on
</select>
2. Code ;
<input type="text" name="some_text">
3. Code ;
<input type="text" name="some_other_text">
(obviously those are only examples. You would probably want them to be names that make some sense to you).
Then in a plugin (probaby two plugins, using both the group_doedit and group_docreate hooks), you would want to do something like:
Code:
$vbulletin->input->clean_array_gpc('p', array(
'some_person' => TYPE_STR,
'some_text' => TYPE_STR,
'some_other_text' => TYPE_STR,
));
Your values would then be in $vbulletin->GPC['some_person'], for instance. You'd need to arrange to have them saved in the database somewhere, and read them back out when you need them.
I hope this helps - sorry I don't have the time to figure it all out for you. If you're not a php programmer you might have to think about paying someone to do this for you.