Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: profile.php
Parašė ramon· 2008 Sau. 3 22:01:31
#1
Taigi paprasta uzklausa su user_id.. ;)
Parašė PyccKuu· 2008 Sau. 3 22:01:57
#2
gal galetum ideti ?:?
Redagavo PyccKuu· 2008 Sau. 3 22:01:52
Parašė ramon· 2008 Sau. 3 22:01:41
#3
As tau sukursiu veliau dbr negaliu biski. ;)
Parašė eXtazY· 2008 Sau. 3 22:01:04
#4
Nesupratau temos esmės
Parašė ramon· 2008 Sau. 3 22:01:55
#5
Uz 15min sesiu ir padarysiu, galit ne imtis sios temos padarysiu as. ;)
Parašė PyccKuu· 2008 Sau. 3 23:01:13
#6
laukiu laukiu :] ramon prasau padarik ;)
Parašė bruzgis· 2008 Sau. 3 23:01:12
#7
O kur dingo pats prasymas? pats pirmas postas temos?
Parašė ozzWANTED· 2008 Sau. 3 23:01:20
#8
jei neklystu, ištrynė ramon(2 postai iš šios temos buvo ramon) ištrinti arba tai padarė pats posto autorius. Na jeigu ištrynė ramon, tai poelgis tikrai ne koks.
Parašė PyccKuu· 2008 Sau. 3 23:01:48
#9
na as parasiau , paskuj radau toki kokio rejkejo profile.php paskuj norejau istrinti tema bet tema neisitrine ... bet tas nevejke (isvis buvo paprastas:[) .... bet paskuj vel paprasiau ...
Parašė bruzgis· 2008 Sau. 3 23:01:05
#10
OFFTOPIC: nemanau kad tai ramon darbas ;) turbut pats autorius, ner tikslo ramon ta daryt
Parašė PyccKuu· 2008 Sau. 3 23:01:22
#11
nea tikrai ne ramon as istiriniau ;)
Parašė ramon· 2008 Sau. 4 00:01:04
#12
Grizau ir padariau ;)
Stai kodas :
echo "<table align='center' cellpadding='0' cellspacing='1' width='400' class='tbl-border'>
<tr>
<td class='forum-caption' colspan='2'><b>".$data['user_name']."</b> rasytos naujienos</td>
</tr>
<tr>
<td class='tbl2' width='70%'><B>Naujienos pavadinimas</b></td>
<td class='tbl2' width='30%' nowrap='nowrap'><b>Data</b></td>
</tr>\n";
$a = dbquery("SELECT * FROM ".$db_prefix."news WHERE ".groupaccess('news_visibility' )." AND (news_start='0'||news_start<=".time()." ) AND (news_end='0'||news_end>=".time()." ) AND news_name='".$data['user_id']."'" );
while ($b = dbarray($a)) {
echo "<tr>
<td class='tbl1'><a href='news.php?readmore=".$b['news_id']."'>".trimlink($b['news_subject'], 50)."</a></td>
<td align='center' class='tbl1'><i>".showdate("forumdate", $b['news_datestamp'])."</i></td>
</tr>\n";
}
echo "</table><br>\n";
Simple, ane? :):)
Parašė Soo-2· 2008 Sau. 4 00:01:15
#13
o dabar man pagelbek;)
Parašė PyccKuu· 2008 Sau. 4 00:01:13
#14
Nu jo as taip bandziau visaip bet taip ir nesuradau kokioje vietoje ji rejkia ideti faile gal gali ideti ? ?| stai mano profile.php
Redagavo PyccKuu· 2008 Sau. 4 00:01:11
Parašė ramon· 2008 Sau. 4 00:01:10
#15
<?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 ($data['user_avatar'] ? "<img src='".IMAGES."avatars/".$data['user_avatar']."' alt='".$locale['u017']."'>" : $locale['u046'])."</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['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['u021']."</b></td>
<td class='tbl1'>".($data['user_aim'] ? $data['user_aim'] : $locale['u048'])."</td>
</tr>
<tr>
<td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u011']."</b></td>
<td class='tbl2'>".($data['user_icq'] ? $data['user_icq'] : $locale['u048'])."</td>
</tr>
<tr>
<td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['u012']."</b></td>
<td class='tbl1'>".($data['user_msn'] ? $data['user_msn'] : $locale['u048'])."</td>
</tr>
<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 (iMEMBER && $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'>".($data['user_yahoo'] ? $data['user_yahoo'] : $locale['u048'])."</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='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>
</table>\n";
echo "<br>
<table align='center' cellpadding='0' cellspacing='1' width='400' class='tbl-border'>
<tr>
<td class='forum-caption' colspan='2'><b>".$data['user_name']."</b> rasytos naujienos</td>
</tr>
<tr>
<td class='tbl2' width='70%'><B>Naujienos pavadinimas</b></td>
<td class='tbl2' width='30%' nowrap='nowrap'><b>Data</b></td>
</tr>\n";
$a = dbquery("SELECT * FROM ".$db_prefix."news WHERE ".groupaccess('news_visibility' )." AND (news_start='0'||news_start<=".time()." ) AND (news_end='0'||news_end>=".time()." ) AND news_name='".$data['user_id']."'" );
while ($b = dbarray($a)) {
echo "<tr>
<td class='tbl1'><a href='news.php?readmore=".$b['news_id']."'>".trimlink($b['news_subject'], 50)."</a></td>
<td align='center' class='tbl1'><i>".showdate("forumdate", $b['news_datestamp'])."</i></td>
</tr>\n";
}
echo "</table><br>\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();
require_once "side_right.php";
require_once "footer.php";
?>
Redagavo ramon· 2008 Sau. 4 01:01:07
Parašė PyccKuu· 2008 Sau. 4 00:01:19
#16
nea nu as tikrai lama ar cia kaskas blogai idejau nieko nepasikeite :D paziurek pas save :(
Parašė ramon· 2008 Sau. 4 01:01:39
#17
ATNAUJINAU.
Parašė PyccKuu· 2008 Sau. 4 01:01:46
#18
atsiprasau vejkia didelis aciu ;) o gal zinai kaip dar sone padariti kiek ju isvoso kad neskaicioti ? ;)
Redagavo PyccKuu· 2008 Sau. 4 01:01:04
Parašė ramon· 2008 Sau. 4 01:01:33
#19
Tipo kiek tas narys parase naujienu ar kiek is viso yra webe parasyta naujienu? :)
Parašė PyccKuu· 2008 Sau. 4 01:01:49
#20
kiek tas narys ;)
Parašė ramon· 2008 Sau. 4 01:01:27
#21
Imk sia eilute :
<td class='forum-caption' colspan='2'><b>".$data['user_name']."</b> rasytos naujienos</td>
Ir pakeisk i sia :
<td class='forum-caption' colspan='2'><b>".$data['user_name']."</b> rasytos naujienos <p align='right'>Is viso: ".number_format(dbcount("(news_id)", "news", "news_name='".$data['user_id']."'" ))."</p></td>
Parašė PyccKuu· 2008 Sau. 4 01:01:53
#22
didelis didelis AČIŪ ramon ;);););)
Parašė ramon· 2008 Sau. 4 01:01:20
#23
Prasom,daugiau klausimu nera? ?|
Parašė PyccKuu· 2008 Sau. 4 01:01:39
#24
yra bet nemanau ar padesi ... rejkia panele : kurioje butu
superadminas kiek naujienu parase (tik super adminas)
ta prasme kiek koks adminas parase ;)
Redagavo PyccKuu· 2008 Sau. 4 01:01:15
Parašė ramon· 2008 Sau. 4 01:01:23
#25
Imk. =]
openside("");
$a= dbquery("SELECT * FROM ".$db_prefix."users WHERE user_level>='103' ORDER BY user_level DESC,user_id");
while($b = dbarray($a)) {
echo "<br><img src='".THEME."images/bullet.gif'> <a href='profile.php?lookup=".$b['user_id']."'>".$b['user_name']."</a> (".number_format(dbcount("(news_id)", "news", "news_name='".$b['user_id']."'" )).")";
}
closeside();
Parašė DuRaCeLL· 2008 Sau. 4 01:01:30
#26
ramon`ui gerumo diena užėjo. ;)
Parašė ramon· 2008 Sau. 4 01:01:54
#27
DuRaCeLL parašė:
ramon`ui gerumo diena užėjo. ;)
Ne ilgam.. :);)
Parašė DuRaCeLL· 2008 Sau. 4 02:01:50
#28
Blogai. :p:]
Parašė PyccKuu· 2008 Sau. 4 11:01:00
#29
o bl ramon aciu labai labai ;)