Jump to content

Ciggy

Members
  • Posts

    13
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Ciggy's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I'm looking for a good email system that I can install on my server that will: Let users register a name with my domain (ex. email@mydomain.com) Be fully skinable Have an admin system that will let me edit users Have a forgot password Also I would like it to have an easy install system. I can not write mysql but I can make the user and database. If you know of any good ones please reply. THANKS!
  2. Thank you very much both of you!
  3. <?php foreach($_SESSION as $k = $v) { $_SESSION[$k] = NULL; } header("location:login.php"); ?> Parse error: syntax error, unexpected '=', expecting ')' in /home/lobby/public_html/lyt07v1/logout.php on line 2
  4. Does not log out just brings to the login page which displays you are already logged in. I need an end session somewhere or something.
  5. [code]<STYLE type="text/css"> <!-- BODY { background-color: FFC55E; scrollbar-face-color: FFC55E; scrollbar-highlight-color: FFC55E; scrollbar-3dlight-color: FFC55E; scrollbar-darkshadow-color: F2B03B; scrollbar-shadow-color: FFC55E; scrollbar-arrow-color: 000000; scrollbar-track-color: FFC55E; } --> </STYLE> <?php require('config.php'); if($userData[user] =="" || $userData[pass] ==""){   Echo"Username: Not Logged In - Click <a href='login.php'>here</a> to login.   <hr width='100%' height='1' color='#000000' shade='no'>"; }else{ if ($userData[rank] =="NR"){     $linksVar ="<br> &nbsp;Please visit <a href='/news' target='_blank'>here</a> and login with the same username and password to add/edit/manage the news."; echo $linksVar; exit; }else if($userData[rank] =="0"){     $linksVar ="You are no longer staff at $websiteName, Sorry.";   }else{     $linksVar ="<br> &nbsp;<a href='requests.php'>Request Line</a> |                 <a href='info.php'>Radio Info</a> |                 <a href='rules.php'>DJ Rules</a> |                 <a href='cps.php'>Control Panels</a> |                 <a href='message.php'>DJ Says</a> "; }   Echo"User: <b>$userData[user]</b> Rank: <b>$userData[rank]</b>$linksVar   <hr width='100%' height='1' color='#000000' shade='no'>"; } ?>[/code] I would like a log out button rite next under the DJ says which i want align to the right. I want after you log out for it just to go to the page login.php hope you can help. Thanks so much!
  6. Works perfectly thank you very much for working with me! Once again thank you.
  7. Parse error: syntax error, unexpected T_ELSE in /home/lobby/public_html/lyt07v1/bar.php on line 63
  8. No errors but it did not work the normal DJ links are still displayed. Also if you want to try another way the only people I want to see the DJ links are HDJ, DJ, TDJ, Admin Hope that helps also thank you for working with me!
  9. Parse error: syntax error, unexpected $end in /home/lobby/public_html/lyt07v1/bar.php on line 71
  10. Parse error: syntax error, unexpected T_ELSEIF in /home/lobby/public_html/lyt07v1/bar.php on line 65
  11. This is for a DJ request system i use for my radio website. I want in the bar.php when a News Reporter is logged in instead of having the radio links it has a link to my cutenews. Here is the code of the bar.php: [code=php:0]<STYLE type="text/css"> <!-- BODY { background-color: FFC55E; scrollbar-face-color: FFC55E; scrollbar-highlight-color: FFC55E; scrollbar-3dlight-color: FFC55E; scrollbar-darkshadow-color: F2B03B; scrollbar-shadow-color: FFC55E; scrollbar-arrow-color: 000000; scrollbar-track-color: FFC55E; } --> </STYLE> <? require('config.php'); if($userData[user] =="" || $userData[pass] ==""){   Echo"Username: Not Logged In - Click <a href='login.php'>here</a> to login.   <hr width='100%' height='1' color='#000000' shade='no'>"; }else{   if($userData[rank] =="0"){     $linksVar ="You are no longer staff at $websiteName, Sorry.";   }else{     $linksVar ="<br> &nbsp;<a href='requests.php'>Request Line</a> |                 <a href='info.php'>Radio Info</a> |                 <a href='rules.php'>DJ Rules</a> |                 <a href='cps.php'>Control Panels</a> |                 <a href='message.php'>DJ Says</a> ";   }   Echo"User: <b>$userData[user]</b> Rank: <b>$userData[rank]</b>$linksVar   <hr width='100%' height='1' color='#000000' shade='no'>"; } ?> <body bgcolor=#A6C4D1 leftmargin=0 topmargin=5 marginwidth=0 marginheight=0>[/code] I wanted to add something like this: [code=php:0]}else{   if($userData[rank] =="NR"){     $linksVar ="<br> &nbsp;Please visit <a href='/news'>here</a> and login with the same username and password to add/edit/manage the news.";[/code] This obviously does notwork since that is why I am asking can someone please help.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.