thegod Posted May 29, 2007 Share Posted May 29, 2007 Fatal error: Cannot redeclare logincheck() (previously declared in functions.php:68) in functions.php on line 65 here is the code <?php session_start(); include_once "includes/db_connect.php"; $username=$_SESSION['username']; echo "<link rel=stylesheet href=includes/in.css type=text/css>"; $query=mysql_query("SELECT * FROM user_info WHERE username='$username' LIMIT 1"); $info = mysql_fetch_object($query); $don=mysql_num_rows(mysql_query("SELECT * FROM donaters WHERE username='$username'")); $date = gmdate('Y-m-d h:i:s'); if ($info->health <= "0"){ mysql_query("UPDATE user_info SET status='Dead' WHERE username='$username'"); session_destroy(); } if ($info->status == "Dead" || $info->status == "Banned"){ session_destroy(); echo "Your DEAD!!!!!"; exit(); } $crew_check =mysql_query("SELECT * FROM crews"); while($k = mysql_fetch_object($crew_check)){ $user=mysql_fetch_object(mysql_query("SELECT * FROM user_info WHERE username='$k->owner'")); $rhm=mysql_fetch_object(mysql_query("SELECT * FROM user_info WHERE username='$k->rhm'")); if ($user->status == "Dead" || $user->status == "Banned"){ if ($k->rhm != "0" && $rhm->status == "Alive"){ mysql_query("UPDATE crews SET owner='$k->rhm', rhm='0' WHERE name='$k->name'"); } elseif ($k->rhm == "0" || $rhm->status == "Dead" || $rhm->status == "Banned"){ mysql_query("UPDATE `user_info` SET `crew`='0' WHERE `crew`='$k->name'"); mysql_query("DELETE FROM crews WHERE name='$k->name'"); } } } $bba=mysql_query("SELECT * FROM bank"); while($nana =mysql_fetch_object($bba)){ $ppl=mysql_fetch_object(mysql_query("SELECT * FROM user_info WHERE username='$nana->owner'")); if ($ppl->status == "Dead" || $ppl->status == "Banned"){ mysql_query("UPDATE bank SET owner='0' WHERE id='$nana->id'"); } } $oc_query=mysql_query("SELECT * FROM oc"); while($ttfn = mysql_fetch_object($oc_query)){ $user_oc=mysql_fetch_object(mysql_query("SELECT * FROM user_info WHERE username='$ttfn->leader'")); if ($user_oc->status == "Dead" || $user_oc->status == "Banned"){ mysql_query("UPDATE user_info SET oc='0' WHERE username='$ttfn->we'"); mysql_query("UPDATE user_info SET oc='0' WHERE username='$ttfn->ee'"); mysql_query("UPDATE user_info SET oc='0' WHERE username='$ttfn->driver'"); mysql_query("UPDATE user_info SET oc='0' WHERE username='$ttfn->leader'"); mysql_query("DELETE FROM oc WHERE id='$ttfn->id'"); }} function logincheck(){ if (empty($_SESSION['username'])){ [b][color=red][font=Verdana]Line 68[/font][/color][/b] echo " <SCRIPT LANGUAGE='JavaScript'> window.location='index.php'; </script> "; exit(); }} ////UPDATE ONLINE $time = time() + (60 * 10); mysql_query("UPDATE user_info SET online='$time' WHERE username='$username'"); ///FINSH UPDATING ONLINE function makecomma($input) { if(strlen($input)<=3) { return $input; } $length=substr($input,0,strlen($input)-3); $formatted_input = makecomma($length).",".substr($input,-3); return $formatted_input; } /////////NOW TO THE BB CODES ETC.... function rankcheck(){ $username=$_SESSION['username']; $query=mysql_query("SELECT * FROM user_info WHERE username='$username' LIMIT 1"); $info = mysql_fetch_object($query); $date = gmdate('Y-m-d h:i:s'); if (($info->rank == "Bitch") && ($info->rankpoints >= "100")){ $newrank="chavers sister"; $done="1"; } elseif (($info->rank == "chavers sister") && ($info->rankpoints >= "200")){ $newrank="chav"; $done="1"; } elseif (($info->rank == "chav") && ($info->rankpoints >= "300")){ $newrank="Thug"; $done="1"; } elseif (($info->rank == "Thug") && ($info->rankpoints >= "600")){ $newrank="joey"; $done="1"; } elseif (($info->rank == "joey") && ($info->rankpoints >= "1600")){ $newrank="Soild Gangster"; $done="1"; } elseif (($info->rank == "Soild Gangster") && ($info->rankpoints >= "32000")){ $newrank="Soild Boss"; $done="1"; } elseif (($info->rank == "Soild Boss") && ($info->rankpoints >= "64000")){ $newrank="Golbal Scare"; $done="1"; } elseif (($info->rank == "Golbal Scare") && ($info->rankpoints >= "128000")){ $newrank="Goodfella"; $done="1"; } elseif (($info->rank == "Goodfella") && ($info->rankpoints >= "256000")){ $newrank="Respectable Goodfella"; $done="1"; } elseif (($info->rank == "Respectable Goodfella") && ($info->rankpoints >= "512000")){ $newrank="Respectable Godfather"; $done="1"; } elseif (($info->rank == "Respectable Godfather") && ($info->rankpoints >= "1024000")){ $newrank="Offical GH Godfather Legend"; $done="1"; } elseif (($info->rank == "Offical GH Godfather Legend") && ($info->rankpoints >= "100000000000")){ $newrank="GOD OF GH"; $done="1"; } if (!$done){ $done="0"; } if ($done == "1"){ mysql_query("UPDATE user_info SET rank='$newrank' WHERE username='$username'"); mysql_query("INSERT INTO `inbox` ( `id` , `to` , `from` , `message` , `date` , `read` , `saved` , `event_id` ) VALUES ( '', '$username', '$username', 'You have been promoted to $newrank your doing well!', '$date', '0', '0', '0' )"); }} rankcheck(); ///////HOUSTON WE HAVE JAIL CHECK! $jail_check=mysql_query("SELECT * FROM jail"); while($monster=mysql_fetch_object($jail_check)){ if (time() > $monster->time_left){ mysql_query("DELETE FROM jail WHERE username='$monster->username'"); }} function maketime($last){ $timenow = time(); if($last>$timenow){ $order = $last-$timenow; while($order >= 60){ $order = $order-60; $ordermleft++; } while($ordermleft >= 60){ $ordermleft = $ordermleft-60; $orderhleft++; } if($ordermleft == 0){ $ordermleft = ""; } else { $ordermleft = "$ordermleft Minutes"; } if($orderhleft == 0){ $orderhleft = ""; } else { $orderhleft = "$orderhleft Hours"; } return "$orderhleft $ordermleft $order Seconds"; }} function loose_energy(){ $username=$_SESSION['username']; $query=mysql_query("SELECT * FROM user_info WHERE username='$username' LIMIT 1"); $info = mysql_fetch_object($query); $energy=$info->energy - rand(1,3); if ($energy <= "0"){ $update=health; $thing=$info->health - rand(1,3); $energy_new="0"; }elseif ($energy > "0"){ $update=energy; $thing=$info->energy - rand(1,3); } if (!$energy_new){ mysql_query("UPDATE user_info SET $update='$thing' WHERE username='$username'"); }elseif ($energy_new){ mysql_query("UPDATE user_info SET $update='$thing', energy='0' WHERE username='$username'"); } } $most_online=mysql_fetch_object(mysql_query("SELECT * FROM site_stats WHERE id='1'")); $timenow=time(); $now_online =mysql_num_rows(mysql_query("SELECT * FROM user_info WHERE online > '$timenow'")); if ($now_online > $most_online->online){ mysql_query("UPDATE site_stats SET online='$now_online' WHERE id='1'"); } $drop =mysql_query("SELECT * FROM casinos"); while($tard=mysql_fetch_object($drop)){ $per = mysql_fetch_object(mysql_query("SELECT * FROM user_info WHERE username='$tard->owner'")); if ($per->status == "Dead" || $per->status == "Banned"){ mysql_query("UPDATE casinos SET owner='0' WHERE casino='$tard->casino' AND owner='$tard->owner'"); } } $drop_bar =mysql_query("SELECT * FROM bar"); $tard_bar= mysql_query("SELECT * FROM bar"); $per_bar = mysql_fetch_object(mysql_query("SELECT * FROM user_info WHERE username='$tard_bar->owner'")); if ($per_bar->status == "Dead" || $per_bar->status == "Banned"){ mysql_query("UPDATE bar SET owner='0' WHERE owner='$tard_bar->owner'"); } $drop_bf =mysql_query("SELECT * FROM bf"); while($tard_bf=mysql_fetch_object($drop_bf)){ $per_bf = mysql_fetch_object(mysql_query("SELECT * FROM user_info WHERE username='$tard_bf->owner'")); if ($per_bf->status == "Dead" || $per_bf->status == "Banned"){ mysql_query("UPDATE bf SET owner='0' WHERE owner='$tard_bf->owner'"); } } if ($info->banktime <= time() && $info->bank > "0"){ $nmoney = 10 * $info->bank / 100; $money_in = $info->bank + $nmoney; $money_in= round($money_in); $recieve = $info->money + $money_in; mysql_query("UPDATE user_info SET money = '$recieve', bank='0', banktime='0' WHERE username='$username'"); } $drop_und =mysql_query("SELECT * FROM shop"); while($tard_und=mysql_fetch_object($drop_und)){ $per_und = mysql_fetch_object(mysql_query("SELECT * FROM user_info WHERE username='$tard_und->owner'")); if ($per_und->status == "Dead" || $per_und->status == "Banned"){ mysql_query("UPDATE shop SET owner='0' WHERE owner='$tard_und->owner'"); } } $user_info=mysql_fetch_object(mysql_query("SELECT * FROM user_info WHERE username='$username'")); if ($user_info->jail_able == "1" && $user_info->jail_untill <= time()){ mysql_query("UPDATE user_info SET jail_able='0' WHERE username='$username'"); } $user_shit=mysql_fetch_object(mysql_query("SELECT * FROM user_info WHERE username='$username'")); if ($user_shit->last_respect < time() && $fetch->rank != "Bitch"){ if ($info->rank == "chavers sister"){ $new_res="1"; }elseif($info->rank == "chav"){ $new_res="2"; }elseif($info->rank == "Thug"){ $new_res="3"; }elseif($info->rank == "joey"){ $new_res="4"; }elseif($info->rank == "Soild Gangster"){ $new_res="5"; }elseif($info->rank == "Soild Boss"){ $new_res="6"; }elseif($info->rank == "Golbal Scare"){ $new_res="7"; }elseif($info->rank == "Goodfella"){ $new_res="8"; }elseif($info->rank == "Respectable Goodfella"){ $new_res="9"; }elseif($info->rank == "Respectable Godfather"){ $new_res="10"; }elseif($info->rank == "Offical GH Godfather Legend"){ $new_res="11"; }elseif($info->rank == "Offical GH Godfather Legend"){ $new_res="12"; } $now=time() + (3600 * 24 * 7); mysql_query("UPDATE user_info SET respect='$new_res', last_respect='$now' WHERE username='$username'"); } ?> Quote Link to comment https://forums.phpfreaks.com/topic/53477-fatal-error-cannot-redeclare-logincheck/ Share on other sites More sharing options...
MadTechie Posted May 29, 2007 Share Posted May 29, 2007 USE CODE TAGS NEXT TIME ok in functions.php line 68 use include_once (or require_once) Quote Link to comment https://forums.phpfreaks.com/topic/53477-fatal-error-cannot-redeclare-logincheck/#findComment-264325 Share on other sites More sharing options...
thegod Posted May 29, 2007 Author Share Posted May 29, 2007 ??? including a if statement would that work? please show me how to put that line of coding many thanks Quote Link to comment https://forums.phpfreaks.com/topic/53477-fatal-error-cannot-redeclare-logincheck/#findComment-264327 Share on other sites More sharing options...
MadTechie Posted May 29, 2007 Share Posted May 29, 2007 the bug is in functions.php not the one you posted in functions.php you include that file right.. now change the include from include to include_once or require to require_once Quote Link to comment https://forums.phpfreaks.com/topic/53477-fatal-error-cannot-redeclare-logincheck/#findComment-264330 Share on other sites More sharing options...
thegod Posted May 29, 2007 Author Share Posted May 29, 2007 that is the function coding and i have marked line 68 Quote Link to comment https://forums.phpfreaks.com/topic/53477-fatal-error-cannot-redeclare-logincheck/#findComment-264332 Share on other sites More sharing options...
MadTechie Posted May 29, 2007 Share Posted May 29, 2007 Well its being called via a include not an include_once.. back referance until you find the include Quote Link to comment https://forums.phpfreaks.com/topic/53477-fatal-error-cannot-redeclare-logincheck/#findComment-264335 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.