[مجابة] هاك تحديد الجنس
المشرف: alhitary
[?????] ??? ????? ?????
?????? ?????
???? ?????
?? ????? ?????
????? ????? ??? ????? ?? ???????
?? ????? viewtopic
????? ??? ???? ??? ????? ??????? ?????? ???
???? ?????
?? ????? ?????
????? ????? ??? ????? ?? ???????
?? ????? viewtopic
????? ??? ???? ??? ????? ??????? ?????? ???
كود: تحديد الكل
###############################################
## Mod Title: Gender part 1
## Mod Version: 1.2.0
## Author: Niels Chr, Denmark < ncr@db9.dk > (Niels Chr. R?d) http://mods.db9.dk
## Description: This mod will add a Gender field into your users' profile.
##
## This mod is for phpBB2 ver 2.0.2
##
##
## Installation Level: Moderate
## Installation Time: 15-25 Minutes
## Files To Edit: 8
## language/lang_xx/lang_main.php
## includes/usercp_register.php
## includes/usercp_viewprofile.php
## includes/usercp_avatar.php
## admin/admin_users.php
## templates/SubSliver/profile_view_body.tpl
## templates/SubSliver/profile_add_body.tpl
## templates/subsilver/admin/user_edit_body.tpl
##
## Included Files: n/a
##
## History:
## 0.9.0 - Initial release phpBB2 RC-1
## 1.1.4 - Last release for phpBB2 ver 2.0.0
## 1.2.0. - fist release for phpBB2 ver 2.0.1.
## 1.2.0. - confirmed for phpBB2 ver 2.0.2 - no changes needed
##
##############################################################
## This MOD is released under the GPL License.
## Intellectual Property is retained by the MOD Author(s) listed above
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/
##
#################################################################
##
## Installation Notes:
##
## if you are using a prefix to you DB tabels then you have to add this to
## the SQL commands, e.g. "phpbb_users" instead of just "users" - ONLY
## in the initial SQL commands, not in the php code !
##
## The most important thing to keep in mind is, take your time, make
## sure you are finding the correct lines to modify, then take care to paste the new code.
## Please also keep in mind, if you are using more than one language file or theme at your
## site, you will need to edit the corrosponding files for each occurrence. Good Luck!
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
## and the Database
#################################################################
#
#-----[ ADD SQL ]------------------------------------------
#
# or run the included db_update.php file as admin
#
ALTER TABLE users ADD user_gender TINYINT
#
#-----[ OPEN ]------------------------------------------
#
# (make sure to edit this file for every language your board uses).
language/english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
//
// That's all Folks!
// -------------------------------------------------
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//Add on for Gender Mod
$lang['Gender'] = 'Gender';//used in users profile to display witch gender he/she is
$lang['Male'] = 'Male';
$lang['Female']='Female';
$lang['No_gender_specify'] = 'None Specified';
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_register.php
#
#-----[ FIND ]------------------------------------------
#
$signature = str_replace('<br />', "\n", $signature);
#
#-----[ AFTER, ADD ]------------------------------------------
#
$gender = ( isset($HTTP_POST_VARS['gender']) ) ? intval ($HTTP_POST_VARS['gender']) : 0;
#
#-----[ FIND ]------------------------------------------
#
$sql = "UPDATE " . USERS_TABLE . "
SET "
WHERE user_id = $user_id";
#
#-----[ IN-LINE FIND ]------------------------------------------
#
$avatar_sql . "
#
#-----[ IN-LINE, AFTER, ADD ]------------------------------------------
#
, user_gender=$gender
#
#-----[ FIND ]------------------------------------------
#
$sql = "INSERT INTO " . USERS_TABLE . "
VALUES (
#
#-----[ IN-LINE FIND ]------------------------------------------
#
, user_style
#
#-----[ IN-LINE, AFTER, ADD ]------------------------------------------
#
, user_gender
#
#-----[ IN-LINE FIND ]------------------------------------------
#
, $user_style
#
#-----[ IN-LINE, AFTER, ADD ]------------------------------------------
#
, '$gender'
#
#-----[ FIND ]------------------------------------------
#
$interests = htmlspecialchars($userdata['user_interests']);
#
#-----[ AFTER, ADD ]------------------------------------------
#
$gender=$userdata['user_gender'];
#
#-----[ FIND ]------------------------------------------
#
display_avatar_gallery(
#
#-----[ IN-LINE FIND ]------------------------------------------
#
);
#
#-----[ IN-LINE, BEFORE, ADD ]------------------------------------------
#
, $gender
#
#-----[ FIND ]------------------------------------------
#
$smilies_status = ( $userdata['user_allowsmile'] && $board_config['allow_smilies'] ) ? $lang['Smilies_are_ON'] : $lang['Smilies_are_OFF'];
#
#-----[ AFTER, ADD ]------------------------------------------
#
switch ($gender)
{
case 1: $gender_male_checked="checked=\"checked\"";break;
case 2: $gender_female_checked="checked=\"checked\"";break;
default:$gender_no_specify_checked="checked=\"checked\"";
}
#
#-----[ FIND ]------------------------------------------
#
'INTERESTS' => $interests,
#
#-----[ AFTER, ADD ]------------------------------------------
#
'LOCK_GENDER' =>($mode!='register') ? 'DISABLED':'',
'GENDER' => $gender,
'GENDER_NO_SPECIFY_CHECKED' => $gender_no_specify_checked,
'GENDER_MALE_CHECKED' => $gender_male_checked,
'GENDER_FEMALE_CHECKED' => $gender_female_checked,
#
#-----[ FIND ]------------------------------------------
#
'L_INTERESTS' => $lang['Interests'],
#
#-----[ AFTER, ADD ]------------------------------------------
#
'L_GENDER' =>$lang['Gender'],
'L_GENDER_MALE' =>$lang['Male'],
'L_GENDER_FEMALE' =>$lang['Female'],
'L_GENDER_NOT_SPECIFY' =>$lang['No_gender_specify'],
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_viewprofile.php
#
#-----[ FIND ]------------------------------------------
#
//
// Generate page
#
#-----[ BEFORE, ADD ]------------------------------------------
#
if ( !empty($profiledata['user_gender']))
{
switch ($profiledata['user_gender'])
{
case 1: $gender=$lang['Male'];break;
case 2: $gender=$lang['Female'];break;
default:$gender=$lang['No_gender_specify'];
}
} else $gender=$lang['No_gender_specify'];
#
#-----[ FIND ]------------------------------------------
#
'INTERESTS' => ( $profiledata['user_interests'] ) ? $profiledata['user_interests'] : ' ',
#
#-----[ AFTER, ADD ]------------------------------------------
#
'GENDER' => $gender,
#
#-----[ FIND ]------------------------------------------
#
'L_INTERESTS' => $lang['Interests'],
#
#-----[ AFTER, ADD ]------------------------------------------
#
'L_GENDER' => $lang['Gender'],
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_avatar.php
#
#-----[ FIND ]------------------------------------------
#
function display_avatar_gallery(
#
#-----[ IN-LINE FIND ]------------------------------------------
#
)
#
#-----[ IN-LINE, BEFORE, ADD ]------------------------------------------
#
, &$gender
#
#-----[ FIND ]------------------------------------------
#
$params = array(
#
#-----[ IN-LINE FIND ]------------------------------------------
#
);
#
#-----[ IN-LINE, BEFORE, ADD ]------------------------------------------
#
, 'gender'
#
#-----[ OPEN ]------------------------------------------
#
admin/admin_users.php
#
#-----[ FIND ]------------------------------------------
#
$interests = ( !empty($HTTP_POST_VARS['interests']) ) ? trim(strip_tags( $HTTP_POST_VARS['interests'] ) ) : '';
#
#-----[ AFTER, ADD ]------------------------------------------
#
$gender = ( isset($HTTP_POST_VARS['gender']) ) ? $HTTP_POST_VARS['gender'] : 0;
#
#-----[ FIND ]------------------------------------------
#
$sql = "UPDATE " . USERS_TABLE . "
WHERE user_id = $user_id";
#
#-----[ IN-LINE FIND ]------------------------------------------
#
, user_rank = $user_rank
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
, user_gender = '$gender'
#
#-----[ FIND ]------------------------------------------
#
$interests = $this_userdata['user_interests'];
#
#-----[ AFTER, ADD ]------------------------------------------
#
$gender = $this_userdata['user_gender'];
#
#-----[ FIND ]------------------------------------------
#
$s_hidden_fields .= '<input type="hidden" name="viewemail" value="' . $viewemail . '" />';
#
#-----[ AFTER, ADD ]------------------------------------------
#
$s_hidden_fields .= '<input type="hidden" name="gender" value="' . $gender . '" />';
#
#-----[ FIND ]------------------------------------------
#
//
// Let's do an overall check for settings/versions which would prevent
#
#-----[ BEFORE, ADD ]------------------------------------------
#
switch ($gender)
{
case 1: $gender_male_checked="checked=\"checked\"";break;
case 2: $gender_female_checked="checked=\"checked\"";break;
default:$gender_no_specify_checked="checked=\"checked\"";
}
#
#-----[ FIND ]------------------------------------------
#
'INTERESTS' => $interests,
#
#-----[ AFTER, ADD ]------------------------------------------
#
'GENDER' => $gender,
'GENDER_NO_SPECIFY_CHECKED' => $gender_no_specify_checked,
'GENDER_MALE_CHECKED' => $gender_male_checked,
'GENDER_FEMALE_CHECKED' => $gender_female_checked,
#
#-----[ FIND ]------------------------------------------
#
'L_INTERESTS' => $lang['Interests'],
#
#-----[ AFTER, ADD ]------------------------------------------
#
'L_GENDER' =>$lang['Gender'],
'L_GENDER_MALE' =>$lang['Male'],
'L_GENDER_FEMALE' =>$lang['Female'],
'L_GENDER_NOT_SPECIFY' =>$lang['No_gender_specify'],
#
#-----[ OPEN ]------------------------------------------
#
# (make sure to edit this file for every theme you use).
templates/subsilver/admin/user_edit_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<input type="text" name="interests" size="35" maxlength="150" value="{INTERESTS}" />
</td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<tr>
<td class="row1"><span class="gen">{L_GENDER}:</span></td>
<td class="row2">
<input type="radio" name="gender" value="0" {GENDER_NO_SPECIFY_CHECKED}/>
<span class="gen">{L_GENDER_NOT_SPECIFY}</span>
<input type="radio" name="gender" value="1" {GENDER_MALE_CHECKED}/>
<span class="gen">{L_GENDER_MALE}</span>
<input type="radio" name="gender" value="2" {GENDER_FEMALE_CHECKED}/>
<span class="gen">{L_GENDER_FEMALE}</span></td>
</tr>
#
#-----[ OPEN ]------------------------------------------
#
# (make sure to edit this file for every theme you use).
templates/subsilver/profile_view_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<td> <b><span class="gen">{INTERESTS}</span></b></td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<tr>
<td valign="top" align="right" nowrap="nowrap"><span class="gen">{L_GENDER}:</span></td>
<td> <b><span class="gen">{GENDER}</span></b></td>
</tr>
#
#-----[ OPEN ]------------------------------------------
#
# (make sure to edit this file for every theme you use).
templates/subsilver/profile_add_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<input type="text" class="post"style="width: 200px" name="interests" size="35" maxlength="150" value="{INTERESTS}" />
</td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<tr>
<td class="row1"><span class="gen">{L_GENDER}:</span></td>
<td class="row2">
<input type="radio" {LOCK_GENDER} name="gender" value="0" {GENDER_NO_SPECIFY_CHECKED}/>
<span class="gen">{L_GENDER_NOT_SPECIFY}</span>
<input type="radio" name="gender" value="1" {GENDER_MALE_CHECKED}/>
<span class="gen">{L_GENDER_MALE}</span>
<input type="radio" name="gender" value="2" {GENDER_FEMALE_CHECKED}/>
<span class="gen">{L_GENDER_FEMALE}</span></td>
</tr>
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
كود: تحديد الكل
###############################################
## Mod Title: Gender part 2
## Mod Version: 1.2.0
## Author: Niels Chr R?d. Denmark < ncr@db9.dk >
## Description: This mod will add display "Gender: <image>" in each of their posts.
## This mod is for phpBB2 ver 2.0.2
##
##
## Installation Level: Easy
## Installation Time: 5-10 Minutes
## Files To Edit:
## viewtopic.php
## templates/subSliver/subsilver.cfg
## templates/subSliver/viewtopic_body.tpl
## Included Files:
## templates/subSliver/icon_minigender_male.gif
## templates/subSliver/icon_minigender_female.gif
##
## History:
## 0.9.0 - Initial release phpBB2 RC-1
## 1.1.1 - Last release for phpBB2 ver 2.0.0
## 1.2.0. - fist release for phpBB2 ver 2.0.1.
## 1.2.0. - confirmed for phpBB2 ver 2.0.2. no changes needed
##
##############################################################
## This MOD is released under the GPL License.
## Intellectual Property is retained by the MOD Author(s) listed above
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/
##############################################################
## Authors Notes:
##
## Asumes that PART 1 of gender mod is done
##
## The most important thing to keep in mind is, take your time, make
## sure you are finding the correct lines to modify, then take care to paste the new code.
## Please also keep in mind, if you are using more than one language file or theme at your
## site, you will need to edit the corrosponding files for each occurrence. Good Luck!
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------
#
$sql = "SELECT u.username
#
#-----[ IN-LINE FIND ]------------------------------------------
#
, p.*
#
#-----[ IN-LINE BEFORE, ADD ]------------------------------------------
#
, u.user_gender
#
#-----[ FIND ]------------------------------------------
#
$rank_image = '';
#
#-----[ AFTER, ADD ]------------------------------------------
#
$gender_image = '';
#
#-----[ FIND ]------------------------------------------
#
$pm_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_pm'] . '" alt="' . $lang['Send_private_message'] . '" title="' . $lang['Send_private_message'] . '" border="0" /></a>';
#
#-----[ AFTER, ADD ]------------------------------------------
#
if ( !empty($postrow[$i]['user_gender']))
{
switch ($postrow[$i]['user_gender'])
{
case 1 : $gender_image = $lang['Gender'].":<img src=\"" . $images['icon_minigender_male'] . "\" alt=\"" . $lang['Gender']. ":".$lang['Male']."\" title=\"" . $lang['Gender'] . ":".$lang['Male']. "\" border=\"0\" />"; break;
case 2 : $gender_image = $lang['Gender'].":<img src=\"" . $images['icon_minigender_female'] . "\" alt=\"" . $lang['Gender']. ":".$lang['Female']. "\" title=\"" . $lang['Gender'] . ":".$lang['Female']. "\" border=\"0\" />"; break;
default : $gender_image="";
}
}
#
#-----[ FIND ]------------------------------------------
#
'POSTER_RANK' => $poster_rank,
#
#-----[ AFTER, ADD ]------------------------------------------
#
'POSTER_GENDER' => $gender_image,
#
#-----[ FIND ]------------------------------------------
#
'DELETE' => $delpost,
#
#-----[ AFTER, ADD ]------------------------------------------
#
'L_GENDER' => $lang['Gender'],
#
#-----[ OPEN ]------------------------------------------
#
# (remember to do this change to all installed templates on your board)
templates/subsilver/subsilver.cfg
#
#-----[ FIND ]------------------------------------------
#
$images['icon_newest_reply'] = "$current_template_images/icon_newest_reply.gif";
#
#-----[ AFTER, ADD ]------------------------------------------
#
$images['icon_minigender_male'] = "$current_template_images/icon_minigender_male.gif";
$images['icon_minigender_female'] = "$current_template_images/icon_minigender_female.gif";
#
#-----[ COPY ]------------------------------------------
#
copy *.gif to templates/subsilver/images/*.gif
#
#-----[ OPEN ]------------------------------------------
#
# (make sure you edit each occurrence of this file for all your themes).
templates/subsilver/viewtopic_body.tpl
#
#-----[ FIND ]------------------------------------------
#
{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br />
#
#-----[ AFTER, ADD ]------------------------------------------
#
{postrow.POSTER_GENDER}<br />
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
آخر تعديل بواسطة uae555 في الأربعاء مارس 08, 2006 10:22 am، تم التعديل 5 مرات في المجمل.
???? ???? ????? ??? ????? viewtopic.php
???? ????
Could not obtain post/user information.
DEBUG MODE
SQL Error : 1054 Unknown column 'u.user_gender' in 'field list'
SELECT u.username, u.user_id, u.user_posts, u.user_from, u.user_website, u.user_email, u.user_icq, u.user_aim, u.user_yim, u.user_regdate, u.user_msnm, u.user_viewemail, u.user_rank, u.user_sig, u.user_sig_bbcode_uid, u.user_avatar, u.user_avatar_type, u.user_allowavatar, u.user_allowsmile, u.user_allow_viewonline, u.user_session_time, u.user_gender,p.*, pt.post_text, pt.post_subject, pt.bbcode_uid FROM phpbb_posts p, phpbb_users u, phpbb_posts_text pt WHERE p.topic_id = 655 AND pt.post_id = p.post_id AND u.user_id = p.poster_id ORDER BY p.post_time ASC LIMIT 0, 15
Line : 451
File : viewtopic.php
???? ??????? ?? ??? :
viewtopic.php
#
#-----[ FIND ]------------------------------------------------
#
$sql = "SELECT u.username
#
#-----[ IN-LINE FIND ]----------------------------------------
#
, p.*
#
#-----[ IN-LINE BEFORE, ADD ]---------------------------------
#
, u.user_gender
???? ????
Could not obtain post/user information.
DEBUG MODE
SQL Error : 1054 Unknown column 'u.user_gender' in 'field list'
SELECT u.username, u.user_id, u.user_posts, u.user_from, u.user_website, u.user_email, u.user_icq, u.user_aim, u.user_yim, u.user_regdate, u.user_msnm, u.user_viewemail, u.user_rank, u.user_sig, u.user_sig_bbcode_uid, u.user_avatar, u.user_avatar_type, u.user_allowavatar, u.user_allowsmile, u.user_allow_viewonline, u.user_session_time, u.user_gender,p.*, pt.post_text, pt.post_subject, pt.bbcode_uid FROM phpbb_posts p, phpbb_users u, phpbb_posts_text pt WHERE p.topic_id = 655 AND pt.post_id = p.post_id AND u.user_id = p.poster_id ORDER BY p.post_time ASC LIMIT 0, 15
Line : 451
File : viewtopic.php
???? ??????? ?? ??? :
viewtopic.php
#
#-----[ FIND ]------------------------------------------------
#
$sql = "SELECT u.username
#
#-----[ IN-LINE FIND ]----------------------------------------
#
, p.*
#
#-----[ IN-LINE BEFORE, ADD ]---------------------------------
#
, u.user_gender
???? ?? ????? ?? ??????usercp_register
?? ??? ???? ??? ????? ?? ??????? ???? ??
_____________________________
??? ???
Could not insert data into users table
DEBUG MODE
SQL Error : 1136 Column count doesn't match value count at row 1
INSERT INTO phpbb_users (user_id, username, user_regdate, user_password, user_email, user_icq, user_website, user_occ, user_from, user_interests, user_sig, user_sig_bbcode_uid, user_avatar, user_avatar_type, user_viewemail, user_aim, user_yim, user_msnm, user_attachsig, user_allowsmile, user_allowhtml, user_allowbbcode, user_allow_viewonline, user_notify, user_notify_pm, user_popup_pm, user_timezone, user_dateformat, user_lang, user_style, user_level, user_allow_pm, user_active, user_actkey) VALUES (178, 'uae555', 1141510391, 'cdf1c5480055cb89e13c1403fd62aea4', 'alghawi_5@hotmail.com', '', '', '', '', '', '', '', '', 0, 0, '', '', '', 1, 1, 0, 1, 1, 0, 1, 1, 4, 'D M d, Y g:i a', 'arabic', 7, '1', user_gender, 0, 1, 1, '')
Line : 615
File : usercp_register.php
_________________
???? ??? ???? ????? ??? ??
???????
This list is a result of the SQL queries needed for the additional mods in the pre-moded pack
Gender Mod
[Already added] line: 1 , ALTER TABLE phpbb_users ADD user_gender TINYINT
??? ?? ????
?? ??? ???? ??? ????? ?? ??????? ???? ??
_____________________________
??? ???
Could not insert data into users table
DEBUG MODE
SQL Error : 1136 Column count doesn't match value count at row 1
INSERT INTO phpbb_users (user_id, username, user_regdate, user_password, user_email, user_icq, user_website, user_occ, user_from, user_interests, user_sig, user_sig_bbcode_uid, user_avatar, user_avatar_type, user_viewemail, user_aim, user_yim, user_msnm, user_attachsig, user_allowsmile, user_allowhtml, user_allowbbcode, user_allow_viewonline, user_notify, user_notify_pm, user_popup_pm, user_timezone, user_dateformat, user_lang, user_style, user_level, user_allow_pm, user_active, user_actkey) VALUES (178, 'uae555', 1141510391, 'cdf1c5480055cb89e13c1403fd62aea4', 'alghawi_5@hotmail.com', '', '', '', '', '', '', '', '', 0, 0, '', '', '', 1, 1, 0, 1, 1, 0, 1, 1, 4, 'D M d, Y g:i a', 'arabic', 7, '1', user_gender, 0, 1, 1, '')
Line : 615
File : usercp_register.php
_________________
???? ??? ???? ????? ??? ??
???????
This list is a result of the SQL queries needed for the additional mods in the pre-moded pack
Gender Mod
[Already added] line: 1 , ALTER TABLE phpbb_users ADD user_gender TINYINT
??? ?? ????
- shiko0o
- عضو متميز
- مشاركات: 224
- اشترك في: الثلاثاء سبتمبر 21, 2004 4:37 am
- مكان: E9YpT - ام الدنيا
- اتصال:
???? ????? ?? ????
???? ????? ?? ??? ?? ?????? ???? ??????? ?????
http://www.kalbaz.net
سبحان الله وبحمده سبحان الله العظيم
سبحان الله وبحمده سبحان الله العظيم
????? ???? ?? ??? ??? ??? ????
??????? ?? ????
#-----[ FIND ]------------------------------------------
#
$sql = "INSERT INTO " . USERS_TABLE . "
VALUES (
#
#-----[ IN-LINE FIND ]------------------------------------------
#
, user_style
#
#-----[ IN-LINE, AFTER, ADD ]------------------------------------------
#
, user_gender
#
#-----[ IN-LINE FIND ]------------------------------------------
#
, $user_style
#
#-----[ IN-LINE, AFTER, ADD ]------------------------------------------
#
, '$gender'
??????? ?? ????
#-----[ FIND ]------------------------------------------
#
$sql = "INSERT INTO " . USERS_TABLE . "
VALUES (
#
#-----[ IN-LINE FIND ]------------------------------------------
#
, user_style
#
#-----[ IN-LINE, AFTER, ADD ]------------------------------------------
#
, user_gender
#
#-----[ IN-LINE FIND ]------------------------------------------
#
, $user_style
#
#-----[ IN-LINE, AFTER, ADD ]------------------------------------------
#
, '$gender'
- shiko0o
- عضو متميز
- مشاركات: 224
- اشترك في: الثلاثاء سبتمبر 21, 2004 4:37 am
- مكان: E9YpT - ام الدنيا
- اتصال:
??? ??????
???? ?? ????? ????? ???? ????????
???? ?? ????? ????? ???? ????????
http://www.kalbaz.net
سبحان الله وبحمده سبحان الله العظيم
سبحان الله وبحمده سبحان الله العظيم
الموجودون الآن
المتصفحون للمنتدى الآن: Ahrefs [Bot] و 28 زائرًا