Witam, z góry sory dla tych któym przeszkadza utworzony temat, ale nie wytrzymuje powoli nerwowo kiedy mam szukać czegoś czego nie moge znaleźć.
Dobra przejde do konkretu. Mam problem z user_panel_info zamiast belki pod logo. Udało mi się go umieścić tak jak chciałem, ale jak wiadomo po zalogowaniu się użytkownika gdzieś pojawia się np "Witaj UltraLowBird" a dalej -edytuj profil, -panel administracyjny i wiadomo co dalej. I mój problem jest tego typu, że nie wyswietla mi sie wlasnie nazwa uzytkownika ($user_name). Domyslam sie ze gdzies musze o czym zapominac albo robie blad w zapisie kodu. POMOCY.
O to moj kod pliku z logowaniem:
<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2005 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
+----------------------------------------------------*/
include LOCALE.LOCALESET."global.php";
if (!defined("IN_FUSION")) { header("Location:../../index.php"); exit; }
if (iMEMBER) {
$msg_count = dbcount("(message_id)", "messages", "message_to='".$userdata['user_id']."' AND message_read='0'AND message_folder='0'");
echo "$userdata['user_name']";
echo "<img src='".THEME."images/bullet.gif' alt=''> <a href='".BASEDIR."edit_profile.php' class='side'>".$locale['080']."</a>
<img src='".THEME."images/bullet.gif' alt=''> <a href='".BASEDIR."messages.php' class='side'>".$locale['081']."</a>
<img src='".THEME."images/bullet.gif' alt=''> <a href='".BASEDIR."members.php' class='side'>".$locale['082']."</a>\n";
if (iADMIN && (iUSER_RIGHTS != "" || iUSER_RIGHTS != "C")) {
echo "<img src='".THEME."images/bullet.gif' alt=''> <a href='".ADMIN."index.php".$aidlink."' class='side'>".$locale['083']."</a>\n";
}
echo "<img src='".THEME."images/bullet.gif' alt=''> <a href='".BASEDIR."setuser.php?logout=yes' class='side'>".$locale['084']."</a>\n";
if ($msg_count) echo "<a href='".BASEDIR."messages.php' class='side'>".sprintf($locale['085'], $msg_count).($msg_count == 1 ? $locale['086'] : $locale['087'])."</a>\n";
} else {
echo "<div>".(isset($loginerror) ? $loginerror : "")."
<form name='loginform' method='post' action='".FUSION_SELF."'><span>
".$locale['061']."
<input type='text' name='user_name' class='textbox' style='width:100px'>
".$locale['062']."
<input type='password' name='user_pass' class='textbox' style='width:100px'>
<input type='checkbox' name='remember_me' value='y' title='".$locale['063']."' style='vertical-align:middle;'>
<input type='submit' name='login' value='".$locale['064']."' class='button'>
\n";
if ($settings['enable_registration']) {
echo "".$locale['065']."\n";
}
echo $locale['066']."
</span></form></div>\n";
}
?>
To kod pliku theme.php:
function render_header($header_content) {
global $theme_width,$settings;
echo "<table align='center' class='bodyline' width='$theme_width' cellspacing='0' cellpadding='0' border='0'>";
echo "<tr><td width='29' nowrap='nowrap' class='lefttd'></td><td>";
// Start banner code
echo "<table width='100%' border='0' cellspacing='0' cellpadding='4'><tr>";
echo "<td width='60%' style='background-image:url(".THEME."images/logo_bg.gif)' height='190'></td>";
echo "</tr></table>";
echo "<table width='100%' border='0' cellspacing='0' cellpadding='4'><tr>";
echo "<td width='60%' style='background-image:url(".THEME."logowanie.php)' height='30'>";
include THEME."logowanie.php";
echo "</td></tr></table>";
// End banner code
echo "<table width='100%' cellpadding='0' cellspacing='0' border='0' align='center'>";
echo "<tr><td></td></tr></table>";
echo "<table width='100%' cellpadding='0' cellspacing='0' border='0' align='center'>";
echo "<tr valign='top'>";
echo "<td valign='middle' align='left'>";
echo "<table width='100%' cellpadding='4' bgcolor='#000000' cellspacing='0' border='0'><tr>";
}
Tu podaje link do strony na ktorej jest efekt podobny do tego o ktory mi chodzi:
http://www.pentag.../start.php
Edytowane przez ultralowbird dnia 29.03.2007 17:54:34
|