Hexy40's Posts
Nairaland Forum › Hexy40's Profile › Hexy40's Posts
1 2 3 4 5 6 7 8 9 10 (of 10 pages)
Monitoring spiritis |
Keep shouting one Nigeria , keep supporting fulani and let them be killing u. @afonjans I hope they won't start killing u before u start thinking well ...Sai baba. |
TheAngry1:tell your leaders to let us. |
TheAngry1:I wonder where u people got the idea that igbos are arrogant. Food is produced in the north, the westerners are very intelligent . Every igbo, even nnamdi kanu himself would have preferred one nigeria but since things are not working out.... we got to go. |
Yes, I totally agree, but while at it, they should also remember to give fulani herds men, and bokoharam a Nobel peace price for there peace keeping beheading missions , and even to arewa youths for there until dying love for the igbos |
Revenge of the cat woman |
NwaAmaikpe:honest about what? Did she ask for her opinion ? She is not the only billionaire's daughter in Nigeria yet she is one of the most popular simply because she is into entertainment . |
MayorofLagos:arrogance? ?? So all the people that represent nija , nija always pays back by abandoning them outside or not paying them. Now they are claiming someone that have made it. Wetin bring arrogance enter this one, because say na igbo abi?? |
hardeycute:Mr fully baked education, i know u are not one of the problems we have in this country but please go and check for the meaning of celebrity in the dictionary. |
inMyOpeenion:as u said , celebrity is simply when you are famous... is she famous? She can be famous for being a billionaires daughter or being any thing. Monica lewinsky became famous just because of the blow jobs given to bill clinton. Agree or not , she is a celebrity , so is Kim kardashin |
osayuwamwen:Do u have any idea how much people practice to be able to experience what u experience for free? If u think am lying, go to YouTube and search for OOBE and you will see a lot of tutorials just to experience that ![]() |
I dont know about the dreams, but as for sleep paralysis, I have that like 4-5 times a week. It's affected by different factors like 1) fear: when u are not afraid it would almost never happen but if it does, you will fall back to sleep. 2)sleep pattern :have a regular sleep partern. 3)music: for some reason I can't explain, if I put on a Christian music while sleeping it never occurs. 4)prayer 5) sedative: I was given sedative for a different cause and noticed it totally stopped the sleep paralysis for up to 4 months now |
Oche211:u are very sure of what? May be he is corrupt. But did u consider that maybe he is a good person been punished for going against the government. When corrupt people singles someone out for punishment, there is usually something wrong. |
wristbangle:Obi rarely qualifies among d list.... plz explain further |
Comedy central |
About God forgiving you... he said if you are repentant and ask for forgiveness, he will forgive. So you are forgiven weather u feel that way or not. |
chiefolododo:hahaHAHAHA. ... which politician is not corrupt ? |
Reading the article looking for his real offence, then i found it in the last statement " he made statements against President Muhammadu Buhari."...EFCC will soon locate him |
Chilling? Inside provision store? The guy come buy milk and sugar, u rush go take pic |
nairaman66:oga, u don drive for night before? Car don flash u light for eye before? Even if car no flash u light, e get as the road go be, no matter how alert and sober person go enter such death trap |
I only use it when am drifting In need for speed |
gqboyy:it will get there in our dreams, if we all vote buhari 2019 |
WebsiteGuy:sorry I have been trying to delete the post, I posted it when I was free |
As a prophet, I decree front page onto this article |
Asenmugabe |
its working fine now... just put the session start. |
one thing I forgot to tell you is that session start should be the first thing in the beging of a page. <?php ob_start(); session_start();?> even before connection and any thing. That might not be the cause of this problem, give me some time let me test the code by myself |
ok... we need to be sure that the problem is from the home page. try and tell me what happened <?php if (isset($_POST['submit'])){ include("database.php" ;$myusername=$_POST["username"]; $mypass=$_POST["pass"]; $pincodequery = "Select * from login where username='$myusername' AND pass='$mypass'"; $pinquery = mysql_query($pincodequery); $run = mysql_num_rows($pinquery); if ($run > 0 ) { echo " The problem is not form the database"; echo "run =".$run; } else { echo"<script>alert('Incorrect Username or Password')</script>"; echo"<script>window.open('cpanel/login.html', '_self')</script>"; } } ?> |
There are many ways you can handle this issue but the shortest I can think of right now is <?php if (isset($_POST['submit'])){ include("database.php" ;$myusername=$_POST["username"]; $mypass=$_POST["pass"]; $pincodequery = "Select * from login where username='$myusername' AND pass='$mypass'"; $pinquery = mysql_query($pincodequery); $run = mysql_num_rows($pinquery); if ($run > 0 ) { $_SESSION["usernam"]=$myusername; $_SESSION["passwd"]=$mypass; header("Location: Home.php" ;} else { echo"<script>alert('Incorrect Username or Password')</script>"; echo"<script>window.open('cpanel/login.html', '_self')</script>"; } } ?> This is your code, i just added 2 lines of code. |
From what am seeing: If $run>0; redirect to home page, then Immediately you got to the home page you redirected to login.html if session was not set. Now you should do is set session if $run>0 before going to the home page or else your first line of code in the home page "<?php if (!isset($_SESSION['usernam'])) { header("location: cpanel/login.html" ); }" will send it back to login.html; |
I cant really help from here except if its not a sensitive project and I can see the data base and structure so as to trace the problem. If its a database you are just using for practice, export and post the database here in sql form. |


;