| Tabele w profilu | 
| zezol | Dodany dnia 31.12.2006 21:30:05 | 
|  
 Bywalec
 
  
 
 Postów: 593
 Pomógł: 34
 Data rejestracji: 09.12.2006 22:16
 
 
 | A chodzi mi o tabele w profilu, które oddzielaj? np. Miejscowo??, Data urodzenia itd, np. takie jak na tej stronce(php-fusion.pl). Jak je mo?na zrobi?/doda??? Wiem od Pieki, ?e o tym ju? by?o ale przeszuka?em chyba wszystkie tematy ze s?owem 'skype'(pisa?, ?e by?o to omawiane przy okazji "Skype w profilu"
  . I zwracam si? z tym do Was.)   
 I jeszcze jedno, jak mo?na zmieni? kolejno??(góra/dó?) np. Data rejestracji:, Ostatnia wizyta: (tak jak 'u Was' )??
 Edytowane przez zezol dnia 31.12.2006 21:49:12
 
 | 
|  |   
 
 | 
			
				|  | 
			
				| W?cibski Go?? | Dodany dnia 31.10.2025 09:28:04 | 
			
				| Pan Kontekstualny 
 Postów: n^x
 Data rejestracji: Zawsze
 
 
 |   | 
			
				| IP: localhost |  | 
		
|  | 
| Pieka | Dodany dnia 31.12.2006 21:57:18 | 
|  
 
  
 
 Postów: 19887
 Pomógł: 767
 
  v7.02.03 Data rejestracji: 23.02.2005 18:12
 
 
 | zezol napisa?/a:A chodzi mi o tabele w profilu, które oddzielaj? np. Miejscowo??, Data urodzenia itd, np. takie jak na tej stronce(php-fusion.pl). Jak je mo?na zrobi?/doda???
 Wiem od Pieki, ?e o tym ju? by?o ale przeszuka?em chyba wszystkie tematy ze s?owem 'skype'(pisa?, ?e by?o to omawiane przy okazji "Skype w profilu"). I zwracam si? z tym do Was.):)
 W pliku profile.php, w odpowiednim miejscu dodajesz dodatkowe pola, przyklad:
 
 <tr><td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['u021']."</b></td>
 <td class='tbl1'>".($data['user_aim'] ? $data['user_aim'] : $locale['u048'])."</td>
 </tr>
 
 
 
 
 I jeszcze jedno, jak mo?na zmieni? kolejno??(góra/dó?) np. Data rejestracji:, Ostatnia wizyta: (tak jak 'u Was' )?? Zmieniajac kolejnosc owych pol w pliku profile.php.
 
 Jestem jaki jestem   | 
|  | 
 | 
|  | 
| pasta20 | Dodany dnia 31.12.2006 22:01:06 | 
|  
 Przedszkolak
 
  
 
 Postów: 77
 Ostrzeżeń: 1
 Data rejestracji: 06.11.2005 01:46
 
 
 | Prosto to si? robi.edytujesz profile.php i szukasz tabel zwi?zanych np miejscowo?? <tr> </tr>
 przyk?ad: to cod z EPIV
 
 <?php/*---------------------------------------------------+
 | PHP-Fusion 6 Content Management System
 +----------------------------------------------------+
 | Copyright © 2002 - 2006 Nick Jones
 | http://www.php-fusion.co.uk/
 +----------------------------------------------------+
 | Released under the terms & conditions of v2 of the
 | GNU General Public License. For details refer to
 | the included gpl.txt file or visit http://gnu.org
 +----------------------------------------------------*/
 require_once "maincore.php";
 require_once "subheader.php";
 require_once "side_left.php";
 include LOCALE.LOCALESET."members-profile.php";
 include LOCALE.LOCALESET."user_fields.php";
 
 if (!isset($group_id)) {
 if (!isset($lookup) || !isNum($lookup)) fallback("index.php");
 $result = dbquery("SELECT * FROM ".$db_prefix."users WHERE user_id='$lookup'");
 if (dbrows($result)) { $data = dbarray($result); } else { redirect("index.php"); }
 opentable($locale['420']);
 echo "<table align='center' cellpadding='0' cellspacing='1' width='400' class='tbl-border'>
 <tr>
 <td colspan='3'>
 <table align='center' cellpadding='0' cellspacing='0' width='100%'>
 <tr>
 <td class='tbl2'><b>".$data['user_name']."</b></td>
 <td align='right' class='tbl2'>".getuserlevel($data['user_level'])."</td>
 </tr>
 </table>
 </td>
 <tr>
 <td align='center' width='150' rowspan='5' class='tbl2'>\n";
 
 echo genshadow($data['user_avatar'])."</td>
 <td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['u009']."</b></td>
 <td class='tbl1'>".($data['user_location'] ? $data['user_location'] : $locale['u048'])."</td>
 </tr>
 
 <tr>
 <td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u021']."</b></td>
 <td class='tbl2'>".($data['user_aim'] ? $data['user_aim'] : $locale['u048'])."</td>
 </tr>
 [color=red]<tr>
 <td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['u011']."</b></td>
 <td class='tbl1'>";
 if ($data['user_icq']) {
 echo "<img border=0 src='http://web.icq.com/whitepages/online?icq=".$data['user_icq']."&img=5' height='14'>";
 echo $data['user_icq'];
 } else {
 echo $locale['u048'];
 }
 echo "</td> //to jest kod icq
 </tr>[/color]
 <tr>
 <td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u023']."</b></td>
 <td class='tbl2'>";
 if ($data['user_skype']) {
 echo "<img src='http://mystatus.skype.com/smallicon/".$data['user_skype']."&styl=1' height='14'>";
 echo "<a href='callto://".$data['user_skype']."' target='_blank'>".$data['user_skype']."</a>\n";
 } else {
 echo $locale['u048']."\n";
 }
 echo "</td>
 </tr>
 [color=green]<tr>
 <td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['u012']."</b></td>
 <td class='tbl1'>";
 if ($data['user_msn']) {
 echo "<img src='http://www.gadu-gadu.pl/users/status.asp?id=".$data['user_msn']."&styl=1' height='14'>";
 echo "<a href='gg:".$data['user_msn']."' target='_blank'>".$data['user_msn']."</a>\n";
 } else {
 echo $locale['u048']."\n";
 }
 echo "</td> //gg
 </tr>[/color]
 <tr>
 <td align='center' class='tbl1'>\n";
 if ($data['user_hide_email'] != "1" || iADMIN) {
 echo "[<a href='mailto:".str_replace("@","@",$data['user_email'])."' title='".str_replace("@","@",$data['user_email'])."'>".$locale['u051']."</a>]\n";
 }
 if ($data['user_web']) {
 $urlprefix = !strstr($data['user_web'], "http://") ? "http://" : "";
 echo "[<a href='".$urlprefix.$data['user_web']."' title='".$urlprefix.$data['user_web']."' target='_blank'>".$locale['u052']."</a>]\n";
 }
 if (!isset($userdata['user_id']) || $data['user_id'] != $userdata['user_id']) {
 echo "[<a href='messages.php?msg_send=".$data['user_id']."' title='".$locale['u060']."'>".$locale['u053']."</a>]\n";
 }
 echo "</td>
 <td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u013']."</b></td>
 <td class='tbl2'>";
 if ($data['user_yahoo']) {
 echo "<img src='http://status.tlen.pl/?u=".$data['user_yahoo']."&t=1' height='14'>";
 echo "<a href='http://ludzie.tlen.pl/".$data['user_yahoo']."'>".$data['user_yahoo']."</a>\n";
 } else {
 echo $locale['u048']."\n";
 }
 echo "</td>
 </tr>
 </table>\n";
 
 tablebreak();
 
 echo "<table align='center' cellpadding='0' cellspacing='1' width='400' class='tbl-border'>
 
 <tr>
 <td class='tbl2' colspan='2'><b>".$locale['422']."</b></td>
 </tr>
 <tr>
 <td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u010']."</b></td>
 <td class='tbl2'>";
 if ($data['user_birthdate'] != "0000-00-00") {
 $months = explode("|", $locale['months']);
 $user_birthdate = explode("-", $data['user_birthdate']);
 echo $months[number_format($user_birthdate['1'])]." ".number_format($user_birthdate['2'])." ".$user_birthdate['0'];
 } else {
 echo $locale['u048'];
 }
 echo "</td>
 </tr>
 <tr>
 <td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['u040']."</b></td>
 <td class='tbl1'>".showdate("longdate", $data['user_joined'])."</td>
 </tr>
 <tr>
 <td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u044']."</b></td>
 <td class='tbl2'>".($data['user_lastvisit'] != 0 ? showdate("longdate", $data['user_lastvisit']) : $locale['u049'])."</td>
 </tr>
 <tr>
 <td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['u041']."</b></td>
 <td class='tbl1'>".number_format(dbcount("(shout_id)", "shoutbox", "shout_name='".$data['user_id']."'"))."</td>
 </tr>
 <tr>
 <td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u042']."</b></td>
 <td class='tbl2'>".number_format(dbcount("(comment_id)", "comments", "comment_name='".$data['user_id']."'"))."</td>
 </tr>
 <tr>
 <td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['u043']."</b></td>
 <td class='tbl1'>".number_format($data['user_posts'])."</td>
 </tr>
 <tr>
 <td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u054']."</b></td>
 <td class='tbl2'>".number_format(dbcount("(news_id)", "news", "news_name='".$data['user_id']."'"))."</td>
 </tr>
 <tr>
 <td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['u055']."</b></td>
 <td class='tbl1'>".number_format(dbcount("(article_id)", "articles", "article_name='".$data['user_id']."'"))."</td>
 </tr>
 <tr>
 <td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u056']."</b></td>
 <td class='tbl2'>".number_format(dbcount("(download_id)", "downloads", "user_id='".$data['user_id']."'"))."</td>
 </tr>
 ".(iADMIN ? "<tr>
 <td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['EP_IP']."</b></td>
 <td class='tbl2'>".$data['user_ip']."</td>
 </tr>" : "");
 
 if (EPS) echo "<tr><td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['560']."</b></td> <td class='tbl1'>".check_rang($lookup)."</td></tr>
 <tr><td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['561']."</b></td> <td class='tbl2'>".show_points($lookup)."</td></tr>
 
 
 </table>\n";
 if ($data['user_groups']) {
 tablebreak();
 echo "<table align='center' cellpadding='0' cellspacing='1' width='400' class='tbl-border'>\n";
 echo "<tr>\n<td class='tbl2'><b>".$locale['423']."</b></td>\n\n</tr>\n<tr>\n<td class='tbl1'>\n";
 $user_groups = (strpos($data['user_groups'], ".") == 0 ? explode(".", substr($data['user_groups'], 1)) : explode(".", $data['user_groups']));
 for ($i = 0;$i < count($user_groups);$i++) {
 echo "<a href='".FUSION_SELF."?group_id=".$user_groups[$i]."'>".getgroupname($user_groups[$i])."</a>";
 if ($i != (count($user_groups)-1)) { echo ",\n"; } else { echo "\n"; }
 }
 echo "</td>\n</tr>\n</table>\n";
 }
 } else {
 if (!isNum($group_id)) fallback("index.php");
 $result = dbquery("SELECT * FROM ".$db_prefix."user_groups WHERE group_id='$group_id'");
 if (dbrows($result)) {
 $data = dbarray($result);
 $result = dbquery("SELECT * FROM ".$db_prefix."users WHERE user_groups REGEXP('^\\\.{$group_id}$|\\\.{$group_id}\\\.|\\\.{$group_id}$') ORDER BY user_level DESC, user_name");
 opentable($locale['410']);
 echo "<table align='center' cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>
 <tr>
 <td align='center' colspan='2' class='tbl1'><b>".$data['group_name']."</b> (".sprintf((dbrows($result)==1?$locale['411']:$locale['412']), dbrows($result)).")</td>
 </tr>
 <tr>
 <td class='tbl2'><b>".$locale['401']."</b></td>
 <td align='center' width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['402']."</b></td>
 </tr>\n";
 while ($data = dbarray($result)) {
 $cell_color = ($i % 2 == 0 ? "tbl1" : "tbl2"); $i++;
 echo "<tr>\n<td class='$cell_color'>\n<a href='profile.php?lookup=".$data['user_id']."'>".$data['user_name']."</a></td>\n";
 echo "<td align='center' width='1%' class='$cell_color' style='white-space:nowrap'>".getuserlevel($data['user_level'])."</td>\n</tr>";
 }
 echo "</table>\n";
 } else {
 fallback(BASEDIR."index.php");
 }
 }
 closetable();
 
 if (isset($lookup) && isNum($lookup))
 {
 if (file_exists(INFUSIONS."cautions/locale/".$settings['locale'].".php")) {
 include INFUSIONS."cautions/locale/".$settings['locale'].".php";
 } else {
 include INFUSIONS."cautions/locale/Polish.php";
 }
 tablebreak();
 opentable($locale['C_000']);
 $caution_r = dbquery("SELECT * from ".$db_prefix."cautions WHERE user_id=".$_GET['lookup']);
 $c_count = mysql_numrows($caution_r);
 echo "<table cellpadding='0' cellspacing='0' width='100%'>";
 echo "<tr>\n<td class='tbl' width='50%' align='right'>".$locale['C_014']."</td>\n<td class='tbl' colspan='2'><font  style='font-size:13; color:red'><b>\n";
 echo $c_count."</b></font></td>\n</tr>\n";
 
 while ($caution = dbarray($caution_r))
 {
 $author = dbarray(dbquery("SELECT user_name,user_color,user_prefix from ".$db_prefix."users WHERE user_id=".$caution['who']));
 echo "<tr>\n<td class='tbl' valign='top' align='right'><font style='font-size:9'>".$locale['C_021']."</font> <span s tyle='color:#".$author['user_color'].";'>".$author['user_prefix'].$author['user_name'];
 if ((checkgroup($cautions_conf['group_id']) && $cautions_conf['group_id']!=0) || iSUPERADMIN)
 {
 echo" <br>[ <a href='".INFUSIONS."cautions/cautions.php?action=del&userid=".$caution['user_id']."&id=".$caution['id' ]."'>
 <font style='font-size:9; color:red'>".$locale['C_015']."</font></a> <font style='font-size:9'> | </font><a href='".INFUSIONS."cautions/cautions.php?action=edit&userid=".$caution['user_id']."&id=".$caution['id']."&username=".$data[ 'user_name']."'>
 <font style='font-size:9; color:red'>".$locale['C_016']."</font></a> <font style='font-size:9'></font> ]
 "; }
 echo"</td>\n<td class='tbl' colspan='2'>\n";
 echo "<font style='font-size:9'></font>".$caution['why']."</td>\n</tr>\n";
 }
 echo "</table>";
 closetable();
 // -------------------------------------------------------------------------
 
 require_once INFUSIONS."fusion_forum_view/fusion_forum_view.php";
 }
 
 require_once "side_right.php";
 require_once "footer.php";
 ?>
 
 //edit chyba nienapisa?em jasno ;(
 Po prostu wklejasz sobie kod tam gdzie chcesz aby by?. ;)
 Edytowane przez pasta20 dnia 31.12.2006 22:03:34
 
 | 
|  | 
 | 
|  | 
| zezol | Dodany dnia 31.12.2006 22:55:22 | 
|  
 Bywalec
 
  
 
 Postów: 593
 Pomógł: 34
 Data rejestracji: 09.12.2006 22:16
 
 
 | Co? mi to nie wychodzi... Ten kod co poda?e? to taki nale?y zamieni? za obecny czy jak. Je?li móg?by? to podaj przyk?ad(gotowca) do jednego. Sorki za takie pytania ale ja jestem zielony
  PS: Ja chcia?em aby te linie oddziela?y wszystko(tak jak u Was), pewnie aby tak by?o trzeba dodawa? ka?demu z kolei?
 
 | 
|  |   
 
 | 
|  | 
| Pieka | Dodany dnia 31.12.2006 22:58:14 | 
|  
 
  
 
 Postów: 19887
 Pomógł: 767
 
  v7.02.03 Data rejestracji: 23.02.2005 18:12
 
 
 | Napisz mi co i gdzie chcesz oraz podaj wersje Fusiona. 
 Jestem jaki jestem   | 
|  | 
 | 
|  | 
| zezol | Dodany dnia 31.12.2006 23:10:46 | 
|  
 Bywalec
 
  
 
 Postów: 593
 Pomógł: 34
 Data rejestracji: 09.12.2006 22:16
 
 
 | Wersja - v6.01.6 - 3d-gimbog.ovh.org A dok?adnie to chcia?bym tabele takie jak u Was(php-fusion.pl), aby wszystko by?o oddzielone. A ustawienie takie jak u Was to czy mo?na jako? 'odgapi?'(pod avatar'em - [Email] [Strona] [PW])??
   
 | 
|  |   
 
 | 
|  | 
| Pieka | Dodany dnia 31.12.2006 23:16:11 | 
|  
 
  
 
 Postów: 19887
 Pomógł: 767
 
  v7.02.03 Data rejestracji: 23.02.2005 18:12
 
 
 | zezol napisa?/a:
Wersja - v6.01.6 - 3d-gimbog.ovh.org 
A dok?adnie to chcia?bym tabele takie jak u Was(php-fusion.pl), aby wszystko by?o oddzielone. A ustawienie takie jak u Was to czy mo?na jako? 'odgapi?'(pod avatar'em - [Email] [Strona] [PW])??  
 Przykro mi, ale swoj wyglad Twoja strona zawdziecza uzytemu theme
  Masz to u siebie identyczne, tylko konstrukcja styles.css jest taka, ze nie masz w ogole border.
 Dlatego masz bez ramek, teoretycznie, bo w rzeczywistosci sa.
 
 Jestem jaki jestem   | 
|  | 
 | 
|  | 
| zezol | Dodany dnia 31.12.2006 23:19:54 | 
|  
 Bywalec
 
  
 
 Postów: 593
 Pomógł: 34
 Data rejestracji: 09.12.2006 22:16
 
 
 | O masz...  Jest jaki? sposób aby to zmieni?? 'To jest brzydkie(bez ramek)'   
 | 
|  |   
 
 | 
|  | 
| Pieka | Dodany dnia 31.12.2006 23:33:38 | 
|  
 
  
 
 Postów: 19887
 Pomógł: 767
 
  v7.02.03 Data rejestracji: 23.02.2005 18:12
 
 
 | zezol napisa?/a:
O masz...   Jest jaki? sposób aby to zmieni?? 'To jest brzydkie(bez ramek)'  
 Pewnie, pododawaj sobie border w stylach
  Ja Ci theme przebial nie bede. Poszukaj innego losia
   
 Jestem jaki jestem   | 
|  | 
 | 
|  | 
| zezol | Dodany dnia 31.12.2006 23:39:04 | 
|  
 Bywalec
 
  
 
 Postów: 593
 Pomógł: 34
 Data rejestracji: 09.12.2006 22:16
 
 
 | O, szkoda  Pisa?em, ?e 'zielono'... Wie? ja tego 'border' nie wstawie, bo nie wiem gdzie i jak.
   
 | 
|  |   
 
 | 
|  | 
|  wlodekp | Dodany dnia 31.12.2006 23:40:10 | 
|  
 Weteran
 
  
 
 Postów: 3101
 Pomógł: 29
 Data rejestracji: 21.05.2005 22:27
 
 
 | Tak na marginesie w Dimension oryginalnym te ramki S? 
 | 
|  | 
 | 
|  | 
| zezol | Dodany dnia 31.12.2006 23:45:44 | 
|  
 Bywalec
 
  
 
 Postów: 593
 Pomógł: 34
 Data rejestracji: 09.12.2006 22:16
 
 
 | A no rzeczywi?cie, s?, mo?na sprawdzi? na http://themes4.ph...p?lookup=1(skórke wystarczy zmieni?). Tylko co ja mog?em zmieni?... Edytowane przez jantom dnia 01.01.2007 12:16:40
 
 | 
|  |   
 
 | 
|  | 
|  wlodekp | Dodany dnia 31.12.2006 23:58:42 | 
|  
 Weteran
 
  
 
 Postów: 3101
 Pomógł: 29
 Data rejestracji: 21.05.2005 22:27
 
 
 | Sympatyczny kolego o tej godzinie i DZI? to ja mog? pocz?stowa? Ci? szampanem a nie szuka? Twoich b??dów. P.S. prawdopodobnie zchrzani?e? plik profile.php-wró? do orygina?u i zobacz
 HAPPY NEW YEAR !!! mam otwarte okno ALE KOLOROWO!!! SZA?
 Edytowane przez wlodekp dnia 01.01.2007 00:20:19
 
 | 
|  | 
 | 
|  | 
| Pieka | Dodany dnia 01.01.2007 00:10:56 | 
|  
 
  
 
 Postów: 19887
 Pomógł: 767
 
  v7.02.03 Data rejestracji: 23.02.2005 18:12
 
 
 | Nie, nie, wydaje mi sie, ze zmienil plik styles.css, ale wiedze na ten temat powinien miec sam zainteresowany, a nie my  Wstaw oryginalny plik profile.php jak radzi wlodekp, a jesli nadal bedzie jak jest, to zrob po mojemu i wstaw oryginalny plik styles.css tego thema.
 Edytowane przez Pieka dnia 01.01.2007 00:24:53
 
 Jestem jaki jestem   | 
|  | 
 | 
|  | 
| zezol | Dodany dnia 01.01.2007 00:19:25 | 
|  
 Bywalec
 
  
 
 Postów: 593
 Pomógł: 34
 Data rejestracji: 09.12.2006 22:16
 
 
 | Wystarczy?o profile.php. Dzi?ki i 'sorki' za 'k?opot'  Rozja?ni?em ju? niebo, teraz przejdziemy dalej...
    
 | 
|  |   
 
 |