₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,327,475 members, 8,431,212 topics. Date: Sunday, 21 June 2026 at 11:13 PM

Toggle theme

Hollyfat's Posts

Nairaland ForumHollyfat's ProfileHollyfat's Posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 (of 16 pages)

PoliticsRe: Revealed: Fayose Might Have Forged Hnd Result (picture) by hollyfat(m): 3:50pm On Feb 13, 2016
Who noticed the name Oluwayose
ComputersRe: Simple Server User Come In Here Lets Talk Antivirus And Battery Issues by hollyfat(m): 8:43pm On Feb 12, 2016
Eze2000:
Oh, man. the day odinga virus will catch or this terrible 'backdoor' Trojan that's popular in cafes (one malware hit me when I went to design book cover at a cafe...the transfered the lovely image to my laptop and the windows defender was all over the place with alarms before I figured thing my hard drive was like 'BOOM!!!)
It can't happen, i'm very vigillant
ComputersRe: Simple Server User Come In Here Lets Talk Antivirus And Battery Issues by hollyfat(m): 7:17pm On Feb 12, 2016
I reload my pc september 2015 and i've been using simple server almost everyday since then. Mind you, i don't install any anti virus
WebmastersRe: 3 Reasons My Suit Die by hollyfat(m): 8:25pm On Feb 09, 2016
La click la ban
ProgrammingRe: Can Blog Be Develope From Scratch Without The Use Of Wp Or Blogger? by hollyfat(m): 9:36am On Feb 09, 2016
prosper50:
thanks bro, i need a developer who compatible of handling it as i want it.
Let's chat on whatsapp 08130327697
ProgrammingRe: Can Blog Be Develope From Scratch Without The Use Of Wp Or Blogger? by hollyfat(m): 9:35am On Feb 09, 2016
prosper50:
first i would want to know if blog can be made up from scratch without the use of any software such as wordpress and blogger plaform, if it could be possible with maximum security and design as i want it?
It's possible to design any website from scratch, it's just that we people are lazy and some client even prefered wordpress for their websites/blog.
Tech JobsRe: Anyone Who Could Design A Commercial Website?where I Could Upload Products Daily by hollyfat(m): 6:51am On Feb 09, 2016
michaelcu:
Is there any webmaster who could design a commercial website like konga, amazon and stuff. where I could upload my products available for sale daily or weekly. Preferably in Ibadan. Thanks
check this out http://shop.higotech.com.ng
NYSCRe: Situation In NYSC Registration Centres by hollyfat(m): 6:49am On Feb 09, 2016
Femistico:
me sef don submit successfully and I got a msg frm nysc buh no call up number there...they said it's been processed.
Thank God am not the only one, because the guy is on my neck
NYSCRe: Situation In NYSC Registration Centres by hollyfat(m): 8:45pm On Feb 08, 2016
Taeewo:
is the person above 30yrs
Not at all
NYSCRe: Situation In NYSC Registration Centres by hollyfat(m): 7:18pm On Feb 08, 2016
Please i need help urgently. I registered for someone today, the registration was successful, but there is no call up number. What do i do?
WebmastersRe: WANTED: Webdesign Company With Government And Bank Portfolio by hollyfat(m): 10:31am On Feb 08, 2016
nnamdiosu:
sir....I suggest you drop all these high demands and actually look for who can get the job done instead. these requirements doesn't mean that the company might do a good job. also, you think a company with the qualities you specified would be on nairaland waiting for you abi?. good luck sha
I concur
WebmastersRe: Willing To Buy Freelance Engine Or Hirebee Theme by hollyfat(m): 10:07am On Feb 07, 2016
Academicwizman:
Is anybody here in possession of Freelance engine or Hirebee WordPress theme? Willing to buy the latest version if you have. Thanks
I have hirebee version 1.3.1

Call or Whatspp 08130327697
EducationRe: DIRECT ENTRY Admissions 2016 by hollyfat(m): 9:41am On Feb 06, 2016
Does anyone knows the universities that accept second choice for direct entry?
CelebritiesRe: Wizkid Stole 'Ojuelegba' From Me- Blackface by hollyfat(m): 9:38am On Jan 23, 2016
Did you know that Mark stole Facebook from Seun
CelebritiesRe: Wizkid Stole 'Ojuelegba' From Me- Blackface by hollyfat(m): 9:36am On Jan 23, 2016
I don't know any artist with the name "black face". I only know "black magic" and "black diamond".
ProgrammingRe: Need Help With This Basic Php by hollyfat(m): 8:48pm On Jan 22, 2016
paranorman:
oga, there is no object in the form with the name 'guess', //second line of your php code.
Check very well, it's in the submit button
<input type="submit" name="guess" value="Guess!">
WebmastersRe: Internet To Be Shut Down Worldwide by hollyfat(m): 8:29pm On Jan 22, 2016
UrennaNkoli:
How Will you ever wish for the internet to be shut down ? You will suffer.
I concur
ProgrammingRe: Need Help With This Basic Php by hollyfat(m): 7:53pm On Jan 22, 2016
hollyfat:
Get the value of $die and set it as a session variable. When the user get the answer, you reset the value
Try this


<!DOCTYPE html>
<html>
<head>
<title>
Die
</title>
</head>
<body>
<?php
session_start();
if (isset($_POST['guess'])) {
//check if session is set for die

if (isset($_SESSION['die'])) {
//check user answer
if ($_POST['answer'] == $_SESSION['die']) {
echo "<p>Thumbs up!, you guess right.</p>";
unset($_SESSION['die']);
}else{
echo "<p>Incorrect Guess, please try again</p>";
}
}else{
//roll the die again
$die = rand(1,6);
if ($_POST['answer'] == $die) {
echo "<p>Thumbs up!, you guess right.</p>";
}else{
$_SESSION['die'] = $die;
echo "<p>Incorrect Guess, please try again</p>";
}
}
}
?>

<form action="" method="post">
<label for="answer">Enter your guess</label>
<input type="text" name="answer" id="answer" required />
<br>
<input type="submit" name="guess" value="Guess!">
</form>

</body>
</html>
ProgrammingRe: Need Help With This Basic Php by hollyfat(m): 7:44pm On Jan 22, 2016
Setag:
Let's say we're gonna be rolling a die:

$die = rand(1, 6);


Whilst the die is being rolled (the value of $die remains the same till user makes the right guess), the user tries to guess the value of the die. Program tells the user if the guess is higher (or lower) than the die value if guess is incorrect, program tells user how many times it took to guess the value of the die right if it took more than one turn to make the right guess.

Immadiately user gets it right, game starts over again(the die is rolled again).
Get the value of $die and set it as a session variable. When the user get the answer, you reset the value
WebmastersRe: Website Guru Developer Needed Urgently by hollyfat(m): 6:30pm On Jan 22, 2016
bodeface:
Can I see more of your developments, seems I might be interested.
Check http://cbt.walkemconsulting.com
WebmastersRe: Website Guru Developer Needed Urgently by hollyfat(m): 5:04pm On Jan 22, 2016
bodeface:
Hello,

A guru website developer very competent with vast experience in e-commerce development is urgently required.

Please if you are sure of yourself and can deliver extremely perfect website, please drop your contact, proof or link to such website you have already developed in the past and the cost of your delivery here and you will be sure to have a call within 24hrs if your designs qualify.

Thanks

bodeface
Check this http://shop.higotech.com.ng

Call or whatsapp 08130327697
ProgrammingRe: Pls Help Me With This Php Code by hollyfat(m): 8:40am On Jan 22, 2016
lillylove2:
My God It Worked! Im really, really grateful. I can't thank you enough.

I spent up to 3 hours before i was finally able to make the other one work, only to realize it was multiplication i was seeking, not addition.

I had even given up, and accepted my fate that i will never be a programmer, only for me to try out ur code and it worked!

Thanks very much.
You are welcome
ProgrammingRe: Pls Help Me With This Php Code by hollyfat(m): 11:31pm On Jan 21, 2016
lillylove2:
My God! Its multiplication im looking for not addition. Im totally unserious! Please help me out
$sql = mysql_query("select amount from table where user='dami24'"wink or die(mysql_error());
$product = 1; //initialize your product
while($rs = mysql_fetch_assoc($sql)){
$amt = $rs['amount']; //get the amount
$product *= $amt;
}
echo $product;
ProgrammingRe: Pls Help Me With This Php Code by hollyfat(m): 11:04pm On Jan 21, 2016
lillylove2:
Does this also work on regular mysql (not mysqli) ? I tried it, it didnt work
. You can use mysql if mysqli didn't work.
ProgrammingRe: Pls Help Me With This Php Code by hollyfat(m): 10:34pm On Jan 21, 2016
lillylove2:
Thanks. How do i echo the result?
$sql = mysqli_query("SELECT SUM(Amount) as total FROM table where user='dami24'"wink or die(mysqli_error());

$rs = mysqli_fetch_assoc($sql);
$sum = $rs['total'];

echo $sum;
ComputersRe: Post Your Computer (PC) Troubles Here. by hollyfat(m): 10:10pm On Jan 04, 2016
Kimmyslaw:
How will I go about the safe mode?
Press F8 immediately your system is powered on
ComputersRe: Post Your Computer (PC) Troubles Here. by hollyfat(m): 5:16pm On Jan 04, 2016
onihaxy:
please help.

the FN keys of my Asus mini are the one displaying while typing instead of the regular alphabet keys. please what could be the problem and how do I solve it please?.

attached is the screenshot.
the blue numbers are the FN numbers while the alphabets are the regular keys expected to be displaying.
Press the "FN" Key and the "Num Lk" key together
WebmastersRe: Urgent: Professional Website Designer/developer Is Needed by hollyfat(m): 8:47am On Jan 04, 2016
login1:
Dear all,

If you are a capable professional website designer, kindly contact me on apl_parts@yahoo.com for further discussion.
Kindly drop ur digits
PoliticsRe: APC Warns Against Insulting Buhari, Government Officials - Premiumtimes by hollyfat(m): 9:57pm On Jan 03, 2016
MalcoImX:
The only one used by the APC officially is the "Clueless" tag. And that is earned by GEJ. But you can go to jail by calling me Hitler or pe.dophile.
GEJ didn't ask for your head when you call him clueless, why is it now a different ball game?
PoliticsRe: APC Warns Against Insulting Buhari, Government Officials - Premiumtimes by hollyfat(m): 9:53pm On Jan 03, 2016
Rose2014:
What if they call you drunkard, slowpoke, clueless, imbe.cile
That's criticism and not insult right?

Hypocrites
That's a compliment D;
WebmastersRe: Any Websites For Sale by hollyfat(m): 8:29pm On Jan 03, 2016
nduprincekc:
Please i need a site for my tech work
Which type of website?
WebmastersRe: A Programmer Should Code This For Me And I Will Pay You Duely by hollyfat(m): 6:04pm On Jan 03, 2016
pelij18:
I want a platform were i can upload my css and js files for personal use.

Need it badly... Can you?
of cause . Check my latest work here
http://hollyphat.ml
http://higotech.com.ng
http://hollyphat.ml/school
http:/shop.higotech.com.ng

Call or whatsapp 08130327697

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 (of 16 pages)