النتائج 1 إلى 8 من 8

الموضوع: UBB صورة تظهر تحت اسم العضو

  1. #1
    فضلاً اكتب اسمك الحقيقي هنا
    زائر


    <BLOCKQUOTE><font size="1" face=" Arial">quote:</font><HR>Custom User Image Hack
    by Armage Bedar

    People have been wondering about this for a while - so I've decided to put your minds at ease :-)

    Features:
    - Displays custom user image at any size
    - Works well with custom user status and upload hacks
    - Does NOT appear in CP and cannot be searched (don't know why you'd want to do it in the first place)

    The commented lines are NOT necessary (they are simply directions and do not need to be pasted).

    Let's go...

    # In cpanel2.cgi (start from the top of the file):
    #
    # This is the control panel switch to allow/disallow the images.
    #
    # Find:

    elsif ($DaysPruneDefault == 1000) {
    $Days1000 = "SELECTED";
    } else {
    $Days365 = "SELECTED";
    }

    # and add immediately afterwards:

    if ($allowimage EQ "NO") {
    $imageoff = "CHECKED";
    }
    elsif ($allowimage EQ "YES") {
    $imageon = "CHECKED"; }
    else { $imageon = "CHECKED"; }

    # find:

    &InputRadioRow("#f7f7f7", "Author Column Display", "For each post, you can determine what information to display in the left column associated with the author of the post. The default is to only show the person's username and member status.", "&lt;INPUT TYPE=\"RADIO\" NAME=\"AuthorColumn\" VALUE=\"Minimum\" $MinimumAC&gt; Show username and status only.&lt;BR&gt;
    &lt;INPUT TYPE=\"RADIO\" NAME=\"AuthorColumn\" VALUE=\"PostTotal\" $PostTotalAC&gt; Show username, status, registration date, post total.&lt;BR&gt;&lt;INPUT TYPE=\"RADIO\" NAME=\"AuthorColumn\" VALUE=\"Location\" $LocationAC&gt; All of above plus location.&lt;BR&gt;");

    # and add immediately beneath:

    &InputRadioRow("#dedfdf", "Show custom user image with each post?", "These can be customized by each user from their profile.", "
    &lt;INPUT TYPE=\"RADIO\" NAME=\"allowimage\" VALUE=\"YES\" $imageon&gt; Yes, show them.&lt;BR&gt;
    &lt;INPUT TYPE=\"RADIO\" NAME=\"allowimage\" VALUE=\"NO\" $imageoff&gt; No, don't show them.");

    # NOW ON TO CREATING THE EXTRA FIELDS IN THE USER PERMISSIONS
    # AND DO THE SAVING OF THE EXTRA FIELD
    #
    # find:

    print MEMBERSHIP ("$theprofile[14]\n");

    # where '14' is the highest number in the MEMBERSHIP lines
    # and add immediately beneath:

    print MEMBERSHIP ("$theprofile[15]\n");

    # CHECK THE CP STATUS OF THE TEXT HACK (ON/OFF/NOSTATUS):
    # Open ubb_library2.pl
    # Find:

    if ($AllowIcons eq "TRUE") {
    my $IconNumber = $thisline[9];
    chomp($IconNumber);
    if ($IconNumber eq "") {
    $IconNumber = "1";
    }
    unless (-e "$NonCGIPath/icons/icon$IconNumber.gif") {
    $IconNumber = "1";
    }
    $ThisIcon = qq(&lt;IMG SRC="$NonCGIURL/icons/icon$IconNumber.gif" BORDER=0 ALIGN=ABSCENTER&gt; );
    } else {
    $ThisIcon = qq(&lt;IMG SRC="$NonCGIURL/posticon.gif" BORDER=0&gt; );
    }

    # and add immediately beneath:

    if ($allowimage EQ "YES") {
    if ($thisprofile[15]) {
    $thisimage = qq(&lt;br&gt;&lt;img src="$thisprofile[15]" height=60 width=60 border=0"&gt; );
    } else {
    $thisimage = qq();
    }
    } else {
    $thisimage = qq();
    }

    if ($RegName eq "unreg") {
    $thisimage = "";
    }


    # Change the '60' in the "&lt;img src..." line to whatever height and
    # width you want the image to be restricted to. Delete those parts if you want no limit.
    # (note that $ThisProfile[15]; should be the number for the new profile.
    # Usually this will be 15, unless you have another user status hack installed.)

    # DISPLAY THE NEW VARIABLE ON THE FORUM:
    #
    # Find:

    $ThisThread .= qq(&lt;tr $AlternateColor&gt;
    &lt;TD width=18% valign=top&gt;
    &lt;FONT SIZE="$TextSize" face="$FontFace"&gt;&lt;B&gt;$thisline[2]&lt;/B&gt;&lt;/font&gt;&lt;BR&gt;&lt;FONT SIZE="1" face="$FontFace"&gt;$ThisStatus&lt;/FONT&gt;
    &lt;/td&gt;

    # and add the following after '$ThisStatus':

    $thisimage

    # Make sure members don't overwrite their user image
    # by adding in the correct MEMBERSHIP lines
    #
    # Open ubbmisc.cgi
    #
    # find:

    if ($in{'Password'} eq "$thisprofile[1]") {
    $pwmatch = "true";
    $Password = $thisprofile[1];
    $Email = $thisprofile[2];
    $URL = $thisprofile[3];
    $Occupation = $thisprofile[5];
    $Location = $thisprofile[6];
    $Interests = $thisprofile[9];
    $Status = $thisprofile[8];
    $TotalPosts = $thisprofile[7];
    $Permissions = $thisprofile[4];
    $DateRegistered = $thisprofile[10];

    # and add immediately beneath:

    $userimage = $thisprofile[15];

    # find:

    ## Confirm UserName and Password to prevent hacking
    $ProfileNumber = &GetUserNumber($UserName);
    @profileinfo = &OpenProfile("$ProfileNumber.cgi");
    $CurrentEmail = "$profileinfo[2]";
    chomp($CurrentEmail);
    $Permissions = "$profileinfo[4]";
    chomp($Permissions);
    $TotalPosts = "$profileinfo[7]";
    $Status = "$profileinfo[8]";
    $DateRegistered = "$profileinfo[10]";

    # and add immediately beneath:

    $userimage = "$profileinfo[15]";

    # find:

    print MEMBERSHIP ("$profileinfo[0]\n");
    print MEMBERSHIP ("$Password\n");
    print MEMBERSHIP ("$Email\n");
    print MEMBERSHIP ("$URL\n");
    print MEMBERSHIP ("$Permissions\n");
    print MEMBERSHIP ("$Occupation\n");
    print MEMBERSHIP ("$Location\n");
    print MEMBERSHIP ("$TotalPosts\n");
    print MEMBERSHIP ("$Status\n");
    print MEMBERSHIP ("$Interests\n");
    print MEMBERSHIP ("$DateRegistered\n");
    print MEMBERSHIP ("$in{'EmailView'}\n");
    print MEMBERSHIP ("$Signature\n");
    print MEMBERSHIP ("$in{'ICQnum'}\n");
    print MEMBERSHIP ("$in{'AllowMassMail'}\n");

    # and add immediately beneath:

    print MEMBERSHIP ("$in{'userimage'}\n");

    # find:

    if ($thisprofile[8] eq "Administrator") {
    $ThisStatus = "$AdminTitle";
    }
    elsif ($thisprofile[8] eq "Moderator") {
    $ThisStatus = "$ModeratorTitle";
    }
    elsif ($thisprofile[8] eq "Member") {
    $ThisStatus = "$MemberTitle";
    } else {
    $ThisStatus = "$JrMemberTitle";
    }

    # and add:

    if ($allowimage eq "YES") {
    $thisimage = qq%&lt;img src="$thisprofile[15]"&gt; (URL: $thisprofile[15])%;
    }
    else {$thisimage = ""; }

    # find:

    &lt;td&gt;&lt;FONT SIZE="$TextSize" FACE="$FontFace" COLOR="$TextColor"&gt;$ThisStatus&lt;/FONT&gt;

    # and replace with:

    &lt;td&gt;&lt;FONT SIZE="$TextSize" FACE="$FontFace" COLOR="$TextColor"&gt;$ThisStatus$thisimage&lt;/FONT&gt;

    # Now we'll add the check to see if users changing the image is allowed.
    #
    # find:

    if ($AllowMassMail eq "no") {
    $AllowMailNo = "CHECKED";
    $AMM = qq(&lt;INPUT TYPE="HIDDEN" NAME="OldAMM" VALUE="no"&gt; );
    }
    elsif ($AllowMassMail eq "") {
    $AllowMailYes = "CHECKED";
    $AMM = qq(&lt;INPUT TYPE="HIDDEN" NAME="OldAMM" VALUE="blank"&gt; );
    } else {
    $AllowMailYes = "CHECKED";
    $AMM = qq(&lt;INPUT TYPE="HIDDEN" NAME="OldAMM" VALUE="yes"&gt; );
    }

    # and add:

    $imagefield = "&lt;tr $AltColumnColor2&gt;&lt;td&gt;
    &lt;B&gt;&lt;FONT SIZE=\"$TextSize\" FACE=\"$FontFace\"&gt;User Image&lt;/FONT&gt;&lt;/B&gt;
    &lt;BR&gt;&lt;FONT SIZE=\"1\" FACE=\"$FontFace\"&gt;This text will show an image under your status when you post a message.&lt;/font&gt;
    &lt;/td&gt;&lt;td&gt;
    &lt;B&gt;&lt;FONT SIZE=\"$TextSize\" FACE=\"$FontFace\"&gt;
    &lt;INPUT TYPE=\"text\" NAME=\"userimage\" VALUE=\"$userimage\" size=100 maxlength=200&gt;
    &lt;/FONT&gt;&lt;/B&gt;&lt;/td&gt;&lt;/tr&gt;";

    # find:

    &lt;INPUT TYPE="TEXT" NAME="ICQnum" VALUE="$ICQnumber" SIZE=7 MAXLENGTH=20&gt;

    # and add immediately beneath:

    $imagefield

    # and right below that remove

    &lt;/td&gt;&lt;/tr&gt;

    # The code should now look like this:

    &lt;tr $AltColumnColor1&gt;
    &lt;td&gt;
    &lt;B&gt;&lt;FONT SIZE="$TextSize" FACE="$FontFace"&gt;ICQ Nummer&lt;/FONT&gt;&lt;/B&gt;
    &lt;/td&gt;
    &lt;td&gt;
    &lt;INPUT TYPE="TEXT" NAME="ICQnum" VALUE="$ICQnumber" SIZE=7 MAXLENGTH=20&gt;

    $imagefield

    &lt;tr $AltColumnColor2&gt;
    &lt;td valign=top&gt;
    &lt;B&gt;&lt;FONT SIZE="$TextSize" FACE="$FontFace"&gt;Signature&lt;/FONT&gt;&lt;/B&gt;&lt;BR&gt;&lt;FONT SIZE="1" FACE="$FontFace"&gt;

    # etc...
    #
    # find :

    print MEMBERSHIP ("$UserName\n");<B







  2. #2
    فضلاً اكتب اسمك الحقيقي هنا
    زائر









  3. #3
    عضو سوبر نشيط
    تاريخ التسجيل
    Dec 1999
    المشاركات
    799


    أخوي صعب المنال هذي أي نوع من الصور ,

    انا شفت 3 انواع ,
    نوع العضو يختار الصورة من مجموعة صور تكون جاهزة في المنتدى
    ونوع العضو يحمل الصورة للمنتدى وثم يحطها
    والنوع اللي عجبني ان العضو يحط فقط عنوان الصورة وبس , لكن مشكلتة ماعرفت اتحكم بحجم الصورة , يعني لو يحط العضو صورة كبيرة راح تطلع كبيرة ....



    ------------------
    ســـامر الليـــــــل
    www.alsamer.com







    Vampire غير متواجد حالياً

  4. #4
    عضو نشيط
    تاريخ التسجيل
    Mar 2000
    المشاركات
    71


    اخوي Vampire
    تم تغيير الملف والان الصورة 60*60







    صعب المنال غير متواجد حالياً

  5. #5
    عضو سوبر نشيط
    تاريخ التسجيل
    Jan 2000
    المشاركات
    909


    ياليت بالترتيب لإني ما فهمت شيء لو سمحت بدون زعل





    زعيم2000 غير متواجد حالياً

  6. #6
    عضو نشيط
    تاريخ التسجيل
    Feb 2000
    المشاركات
    142


    بسم الله الرحمن الرحيم !
    رحم الله أمرئ عمل عملا فأتمه أخوس صعب المنال ...
    و فقك الله و زاد من فضلك .. الظاهر أنك أجتهد فعلا حتى تجلب لنا هذه القطعة و بشكل مرتب و لكن تعرف أن البعض معانة متوسط الأنجليزية أو ضعيف و أنا ربما أحمل نفسي إلى مستوى مقبول و لكن لماذا تتعبنا مع هذه الكلمات الأنجليزية المبعثرة داخل الكودات الطويلة ... عرب ما أستطعت حتى تأنس العنيني أقلا
    و فعلا أن التعريب دافع قوي جدا كي للعمل بما تظهره و الأنجليزية ربما يكون مثل مبيد الحشرات لدى البعض .. ( أعزكم الله )
    و لكن لا اعتقد أبدا أن الأنجلزية تدل على أمر رحم الله والديك .. !
    أجتهد أكثر ! كي نستطيع أن نتعاون بهدؤ





    جوهر غير متواجد حالياً

  7. #7
    فضلاً اكتب اسمك الحقيقي هنا
    زائر


    بسم الله الرحمن الرحيم
    سوف أتبرع لكم بتعريب هذه الخطوات خطوة بخطوة
    وبتنظيم
    الرجاء إتباع الخطوات بدقة ، عليكم عمل نسخة من الملفات التي سوف نعدلها للإحتياط
    ------------------------------------
    افتح الملف cpanel2.cgi وعدل مايلي
    #ابحث عن الجملة
    elsif ($DaysPruneDefault == 1000) {
    $Days1000 = "SELECTED";
    } else {
    $Days365 = "SELECTED";
    }

    #أضف مباشرة بعدها

    if ($allowimage EQ "NO") {
    $imageoff = "CHECKED";
    }
    elsif ($allowimage EQ "YES") {
    $imageon = "CHECKED"; }
    else { $imageon = "CHECKED"; }

    -----------
    #ابحث عن في نفس الملف )

    &InputRadioRow("#f7f7f7", "Author Column Display", "For each post, you can determine what information to display in the left column associated with the author of the post. The default is to only show the person's username and member status.", "&lt;INPUT TYPE=\"RADIO\" NAME=\"AuthorColumn\" VALUE=\"Minimum\" $MinimumAC&gt; Show username and status only.&lt;BR&gt;
    &lt;INPUT TYPE=\"RADIO\" NAME=\"AuthorColumn\" VALUE=\"PostTotal\" $PostTotalAC&gt; Show username, status, registration date, post total.&lt;BR&gt;&lt;INPUT TYPE=\"RADIO\" NAME=\"AuthorColumn\" VALUE=\"Location\" $LocationAC&gt; All of above plus location.&lt;BR&gt;");


    #أضف مباشرة تحتها
    &InputRadioRow("#dedfdf", "Show custom user image with each post?", "These can be customized by each user from their profile.", "
    &lt;INPUT TYPE=\"RADIO\" NAME=\"allowimage\" VALUE=\"YES\" $imageon&gt; Yes, show them.&lt;BR&gt;
    &lt;INPUT TYPE=\"RADIO\" NAME=\"allowimage\" VALUE=\"NO\" $imageoff&gt; No, don't show them.");


    #ابحث عن :
    print MEMBERSHIP ("$theprofile[14]\n");
    # حيث ان رقم [14] هو أعلى رقم موجود في هذه الأسطر
    #أضف مباشرة تحتها
    print MEMBERSHIP ("$theprofile[15]\n");
    # مع مراعاة عدم وجود رقم [15] من قبل
    #إذا كان موجودا اكتب الرقم اللذي يلي آخر رقم
    -----------------
    احفظ الملف و افتح ملف ubb_library2.pl

    #ابحث عن :

    if ($AllowIcons eq "TRUE") {
    my $IconNumber = $thisline[9];
    chomp($IconNumber);
    if ($IconNumber eq "") {
    $IconNumber = "1";
    }
    unless (-e "$NonCGIPath/icons/icon$IconNumber.gif") {
    $IconNumber = "1";
    }
    $ThisIcon = qq(&lt;IMG SRC="$NonCGIURL/icons/icon$IconNumber.gif" BORDER=0 ALIGN=ABSCENTER&gt; );
    } else {
    $ThisIcon = qq(&lt;IMG SRC="$NonCGIURL/posticon.gif" BORDER=0&gt; );
    }

    #اضف تحتها مباشرة


    if ($allowimage EQ "YES") {
    if ($thisprofile[15]) {
    $thisimage = qq(&lt;br&gt;&lt;img src="$thisprofile[15]" height=60 width=60 border=0"&gt; );
    } else {
    $thisimage = qq();
    }
    } else {
    $thisimage = qq();
    }

    if ($RegName eq "unreg") {
    $thisimage = "";
    }


    #تأكد ان كل رقم في كلمة $thisprofile[15] هو نفس الرقم الذي كتبته في الأعلى أي أعلى رقم

    #ابحث عن :


    $ThisThread .= qq(&lt;tr $AlternateColor&gt;
    &lt;TD width=18% valign=top&gt;
    &lt;FONT SIZE="$TextSize" face="$FontFace"&gt;&lt;B&gt;$thisline[2]&lt;/B&gt;&lt;/font&gt;&lt;BR&gt;&lt;FONT SIZE="1" face="$FontFace"&gt;$ThisStatus&lt;/FONT&gt;
    &lt;/td&gt;

    #أضف بعد كلمة $ThisStaus

    $thisimage

    -------------
    احفظ الملف ، ثم افتح ملف : ubbmisc.cgi

    #ابحث عن :

    if ($in{'Password'} eq "$thisprofile[1]") {
    $pwmatch = "true";
    $Password = $thisprofile[1];
    $Email = $thisprofile[2];
    $URL = $thisprofile[3];
    $Occupation = $thisprofile[5];
    $Location = $thisprofile[6];
    $Interests = $thisprofile[9];
    $Status = $thisprofile[8];
    $TotalPosts = $thisprofile[7];
    $Permissions = $thisprofile[4];
    $DateRegistered = $thisprofile[10];


    #اضف بعدها
    $userimage = $thisprofile[15];
    # لاتنسى الرقم

    #ابحث عن :

    ## Confirm UserName and Password to prevent hacking
    $ProfileNumber = &GetUserNumber($UserName);
    @profileinfo = &OpenProfile("$ProfileNumber.cgi");
    $CurrentEmail = "$profileinfo[2]";
    chomp($CurrentEmail);
    $Permissions = "$profileinfo[4]";
    chomp($Permissions);
    $TotalPosts = "$profileinfo[7]";
    $Status = "$profileinfo[8]";
    $DateRegistered = "$profileinfo[10]";

    # أضف تحتها :

    $userimage = "$profileinfo[15]";

    #ابحث عن :

    print MEMBERSHIP ("$profileinfo[0]\n");
    print MEMBERSHIP ("$Password\n");
    print MEMBERSHIP ("$Email\n");
    print MEMBERSHIP ("$URL\n");
    print MEMBERSHIP ("$Permissions\n");
    print MEMBERSHIP ("$Occupation\n");
    print MEMBERSHIP ("$Location\n");
    print MEMBERSHIP ("$TotalPosts\n");
    print MEMBERSHIP ("$Status\n");
    print MEMBERSHIP ("$Interests\n");
    print MEMBERSHIP ("$DateRegistered\n");
    print MEMBERSHIP ("$in{'EmailView'}\n");
    print MEMBERSHIP ("$Signature\n");
    print MEMBERSHIP ("$in{'ICQnum'}\n");
    print MEMBERSHIP ("$in{'AllowMassMail'}\n");


    #اضف تحتها
    print MEMBERSHIP ("$in{'userimage'}\n");

    #ابحث :

    if ($thisprofile[8] eq "Administrator") {
    $ThisStatus = "$AdminTitle";
    }
    elsif ($thisprofile[8] eq "Moderator") {
    $ThisStatus = "$ModeratorTitle";
    }
    elsif ($thisprofile[8] eq "Member") {
    $ThisStatus = "$MemberTitle";
    } else {
    $ThisStatus = "$JrMemberTitle";
    }

    #اضف

    if ($allowimage eq "YES") {
    $thisimage = qq%&lt;img src="$thisprofile[15]"&gt; (URL: $thisprofile[15])%;
    }
    else {$thisimage = ""; }


    #ابحث :


    &lt;td&gt;&lt;FONT SIZE="$TextSize" FACE="$FontFace" COLOR="$TextColor"&gt;$ThisStatus&lt;/FONT&gt;


    #ابدل الكود السابق بهذا الكود

    &lt;td&gt;&lt;FONT SIZE="$TextSize" FACE="$FontFace" COLOR="$TextColor"&gt;$ThisStatus$thisimage&lt;/FONT&gt;

    #ابحث :

    if ($AllowMassMail eq "no") {
    $AllowMailNo = "CHECKED";
    $AMM = qq(&lt;INPUT TYPE="HIDDEN" NAME="OldAMM" VALUE="no"&gt; );
    }
    elsif ($AllowMassMail eq "") {
    $AllowMailYes = "CHECKED";
    $AMM = qq(&lt;INPUT TYPE="HIDDEN" NAME="OldAMM" VALUE="blank"&gt; );
    } else {
    $AllowMailYes = "CHECKED";
    $AMM = qq(&lt;INPUT TYPE="HIDDEN" NAME="OldAMM" VALUE="yes"&gt; );
    }


    #اضف :


    $imagefield = "&lt;tr $AltColumnColor2&gt;&lt;td&gt;
    &lt;B&gt;&lt;FONT SIZE=\"$TextSize\" FACE=\"$FontFace\"&gt;User Image&lt;/FONT&gt;&lt;/B&gt;
    &lt;BR&gt;&lt;FONT SIZE=\"1\" FACE=\"$FontFace\"&gt;This text will show an image under your status when you post a message.&lt;/font&gt;
    &lt;/td&gt;&lt;td&gt;
    &lt;B&gt;&lt;FONT SIZE=\"$TextSize\" FACE=\"$FontFace\"&gt;
    &lt;INPUT TYPE=\"text\" NAME=\"userimage\" VALUE=\"$userimage\" size=100 maxlength=200&gt;
    &lt;/FONT&gt;&lt;/B&gt;&lt;/td&gt;&lt;/tr&gt;";

    #ابحث :


    &lt;INPUT TYPE="TEXT" NAME="ICQnum" VALUE="$ICQnumber" SIZE=7 MAXLENGTH=20&gt;


    #اضف :
    $imagefield

    #ثم امسح بعدها
    &lt;/td&gt;&lt;/tr&gt;
    # سوف تكون كالشكل التالي

    &lt;tr $AltColumnColor1&gt;
    &lt;td&gt;
    &lt;B&gt;&lt;FONT SIZE="$TextSize" FACE="$FontFace"&gt;ICQ Nummer&lt;/FONT&gt;&lt;/B&gt;
    &lt;/td&gt;
    &lt;td&gt;
    &lt;INPUT TYPE="TEXT" NAME="ICQnum" VALUE="$ICQnumber" SIZE=7 MAXLENGTH=20&gt;

    $imagefield

    &lt;tr $AltColumnColor2&gt;
    &lt;td valign=top&gt;
    &lt;B&gt;&lt;FONT SIZE="$TextSize" FACE="$FontFace"&gt;Signature&lt;/FONT&gt;&lt;/B&gt;&lt;BR&gt;&lt;FONT SIZE="1" FACE="$FontFace"&gt;

    #ابحث :


    print MEMBERSHIP ("$UserName\n");
    print MEMBERSHIP ("$Password\n");
    print MEMBERSHIP ("$RegEmail\n");
    print MEMBERSHIP ("$URL\n");
    print MEMBERSHIP ("Write\n");
    print MEMBERSHIP ("$Occupation\n");
    print MEMBERSHIP ("$Location\n");
    print MEMBERSHIP ("0\n");
    print MEMBERSHIP ("Junior Member\n");
    print MEMBERSHIP ("$Interests\n");
    print MEMBERSHIP ("$HyphenDate\n");
    print MEMBERSHIP ("$in{'EmailView'}\n");
    print MEMBERSHIP ("$SignatureHTML\n");
    print MEMBERSHIP ("$in{'ICQnum'}\n");
    print MEMBERSHIP ("$in{'AllowMassMail'}\n");

    #أضف :

    print MEMBERSHIP ("$in{'thisimage'}\n");

    ------------------
    احفظ الملف وافتح الملف : Ultimate.cgi

    #ابحث :


    if ($AllowSignature eq "YES") {
    $SigStatus = "enabled";
    } else {
    $SigStatus = "not enabled";
    }


    #اضف :


    $imagefield = "&lt;tr $AltColumnColor1&gt;&lt;td&gt;
    &lt;B&gt;&lt;FONT SIZE=\"$TextSize\" FACE=\"$FontFace\"&gt;User Image&lt;/FONT&gt;&lt;/B&gt;
    &lt;B






  8. #8
    فضلاً اكتب اسمك الحقيقي هنا
    زائر













ضوابط المشاركة

  • لا تستطيع إضافة مواضيع جديدة
  • لا تستطيع الرد على المواضيع
  • لا تستطيع إرفاق ملفات
  • لا تستطيع تعديل مشاركاتك
  •  

أضف موقعك هنا| اخبار السيارات | حراج | شقق للايجار في الكويت | بيوت للبيع في الكويت | دليل الكويت العقاري | مقروء | شركة كشف تسربات المياه | شركة عزل اسطح بالرياض | عزل فوم بالرياض| عزل اسطح بالرياض | كشف تسربات المياة بالرياض | شركة عزل اسطح بالرياض