Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Mods & Themes (http://www.bvlist.com/forumdisplay.php?f=87)
-   -   Contact (icq,msn,yahoo,aim,skype) (http://www.bvlist.com/showthread.php?t=939)

Grom 3rd September 2008 02:30

Contact (icq,msn,yahoo,aim,skype)
 
7 Attachment(s)
Add in msql code
PHP Code:

ALTER TABLE `usersADD `icqVARCHAR255 NOT NULL AFTER `email` ;
ALTER TABLE `usersADD `msnVARCHAR255 NOT NULL AFTER `icq` ;
ALTER TABLE `usersADD `aimVARCHAR255 NOT NULL AFTER `msn` ;
ALTER TABLE `usersADD `yahooVARCHAR255 NOT NULL AFTER `aim` ;
ALTER TABLE `usersADD `skypeVARCHAR255 NOT NULL AFTER `yahoo` ; 

find code in account.php
PHP Code:

print("<TR><TD align=right class=table_col2><B>" ACCOUNT_EMAIL_NOTIFICATION ":</B> </TD><TD align=left class=table_col2><input type=checkbox name=pmnotif" . (strpos($CURUSER['notifs'], "[pm]") !== false " checked" "") .
     
" value=yes><B>" ACCOUNT_PM_NOTIFY_ME "</B><i>The system will email you when you receive a PM.</i></td></tr>"); 

after add code
PHP Code:

print("<tr><td class=\"tablecat\" colspan=\"2\" align=left><b>Contacts</b></td></tr>\n");

tr(" ""    <table cellSpacing=\"3\" cellPadding=\"0\" width=\"100%\" border=\"0\">
            <tr>
        <td style=\"font-size: 1
1px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif\" colspan=2>
        If you want, that other visitors could contact quickly you, specify the data in following systems of fast messages</td>
      </tr>
      <tr>
        <td style=\"font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif\">
        Namber ICQ
        <img alt src=pic/contact/icq.gif width=\"17\" height=\"17\">
        <input maxLength=\"30\" size=\"25\" name=\"icq\" value=\"" 
htmlspecialchars($CURUSER["icq"]) . "\" ></td>
        <td style=\"font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif\">
        Name in AIM
        <img alt src=pic/contact/aim.gif width=\"17\" height=\"17\">
        <input maxLength=\"30\" size=\"25\" name=\"aim\" value=\"" 
htmlspecialchars($CURUSER["aim"]) . "\" ></td>
      </tr>
      <tr>
        <td style=\"font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif\">
        Youre MSN
        <img alt src=pic/contact/msn.gif width=\"17\" height=\"17\">
        <input maxLength=\"50\" size=\"25\" name=\"msn\" value=\"" 
htmlspecialchars($CURUSER["msn"]) . "\" ></td>
        <td style=\"font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif\">
        Name in Yahoo!
        <img alt src=pic/contact/yahoo.gif width=\"17\" height=\"17\">
        <input maxLength=\"30\" size=\"25\" name=\"yahoo\" value=\"" 
htmlspecialchars($CURUSER["yahoo"]) . "\" ></td>
      </tr>
      <tr>
        <td style=\"font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif\">
        Name in Skype
        <img alt src=pic/contact/skype.gif width=\"17\" height=\"17\">
        <input maxLength=\"32\" size=\"25\" name=\"skype\" value=\"" 
htmlspecialchars($CURUSER["skype"]) . "\" ></td>
        <td style=\"font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif\">
         </td>
      </tr>
    </table>"
,1); 

find code
PHP Code:

$avatar $_POST["avatar"];
$title $_POST["title"]; 

after add code
PHP Code:

/////contact//////
      
$icq unesc($_POST["icq"]);
if (
strlen($icq) > 10)
    
bark("Sorry, Namber icq too long  (Max - 10)");
      
$updateset[] = "icq = " sqlesc($icq);

      
$msn unesc($_POST["msn"]);
if (
strlen($msn) > 30)
    
bark("Sorry, Yours msn too long  (Max - 30)");
      
$updateset[] = "msn = " sqlesc($msn);

      
$aim unesc($_POST["aim"]);
if (
strlen($aim) > 30)
    
bark("Sorry, Yours aim too long  (Max - 30)");
      
$updateset[] = "aim = " sqlesc($aim);

      
$yahoo unesc($_POST["yahoo"]);
if (
strlen($yahoo) > 30)
    
bark("Sorry, Yours yahoo too long   (Max - 30)");
      
$updateset[] = "yahoo = " sqlesc($yahoo);

      
$skype unesc($_POST["skype"]);
if (
strlen($skype) > 20)
    
bark("Sorry, Yours skype too long  (Max - 20)");
      
$updateset[] = "skype = " sqlesc($skype);
      
//end conatct/////// 

FIND CODE IN account-details.php

PHP Code:

Warnings: <?=htmlspecialchars($user["warned"])?><BR>
    <?if ($user["privacy"] == "strong"){ echo "Privacy: <b>Strong</b><BR>"; }?>
    </td>
  </tr>

AFTER ADD CODE
PHP Code:

<tr>
<td class=tablea><b>Contact</b></td><td class=tablea align=left>
<?
if ($user["icq"])
    print(
"<img src=http://web.icq.com/whitepages/online?icq='".htmlspecialchars($user['icq'])."&img=5'  alt=icq border=0 /> ".htmlspecialchars($user['icq'])." \n");
if (
$user["msn"])
    print(
"<img src=pic/contact/msn.gif alt=msn border=0 /> ".htmlspecialchars($user['msn'])."\n");
if (
$user["aim"])
    print(
"<img src=pic/contact/aim.gif alt=aim border=0 /> ".htmlspecialchars($user['aim'])."\n");
if (
$user["yahoo"])
    print(
"<img src=pic/contact/yahoo.gif alt=yahoo border=0 /> ".htmlspecialchars($user['yahoo'])."\n");
if (
$user["skype"])
    print(
"<img src=pic/contact/skype.gif alt-skype border=0 /> ".htmlspecialchars($user['skype'])."\n");
?>
</td>
</tr>




Images:


Attachment 290

Attachment 291

Attachment 292

Attachment 293

Attachment 294


Screenshoot:

Attachment 295


Add in your site root:



All times are GMT +2. The time now is 10:39.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.