|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: |
Main page's starting codes:
<?php
function selfURL() { $s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" : ""; $protocol = strleft(strtolower($_SERVER["SERVER_PROTOCOL"]), "/").$s; $port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]); return $protocol."://".$_SERVER['SERVER_NAME'].$port.$_SERVER['REQUEST_URI']; } function strleft($s1, $s2) { return substr($s1, 0, strpos($s1, $s2)); }
?>
<?php
define('IN_PHPBB', true);
$phpbb_root_path = './forum/'; //Path to forum
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('ucp');
?>
<?php if ($user->data['user_id'] != ANONYMOUS)
{
?>
<table background="images/topmenubg.png" height="26" width="100%" border="0" cellspacing="0" cellpadding="0">
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="2%"><img src="images/anahtar.png" width="27" height="24"></td>
<td class="topmenutype" width="50%">
Welcome <?php echo $user->data['username'];?>! <a href="index.php?LogOut=1"> Log Out</a>
</td>
<td class="topmenutype" width="50%"></td>
</tr>
</table></td>
</tr>
</table>
<?php if ($user->data['user_type'] > 2){
?>
<?php } ?>
<?php } else {?>
<table background="images/topmenubg.png" height="26" width="100%" border="0" cellspacing="0" cellpadding="0">
<form id="login" method="post" action="forum/ucp.php?mode=login" onsubmit="return process_form(this)" name="phpbblogin">
<tr>
<td><table width="400" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="30"><img src="images/anahtar.png" alt="" width="27" height="24" /></td>
<td width="191"><span class="topmenutype">
<label>
<input name="username" type="text" id="Username" size="10" />
</label>
<input name="password" type="password" id="Password" size="10" />
<input name="redirect" value="<?php print(selfURL());?> " type="hidden" />
<input type="hidden" name="login" value="login" />
<input name="sub" value="Log in" type="hidden" />
</span></td>
<td width="179"><span class="topmenutype">
<input name="button" src="images/login.png" type="image" class="header" id="button" value="Login" />
</span></td>
</tr>
</table></td>
</tr>
</form>
</table>
<?php } ?>
|
Advertisement
| Hall of Fame |