₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,720 members, 8,423,385 topics. Date: Tuesday, 09 June 2026 at 05:02 PM

Toggle theme

Otunde4u's Posts

Nairaland ForumOtunde4u's ProfileOtunde4u's Posts

1 (of 1 pages)

CrimeRe: Police Arrest Dispatcher Carrying Pistol In Dolphin Estate, Ajah by otunde4u(m): 9:28am On Mar 26, 2024
The policemen don't look professional at their job to me, holding the gun with their bare hands. SMH
InvestmentRe: #twink-as Will Crash Soon. Nonsense by otunde4u(m): 12:04pm On Apr 16, 2017
I said it's format, they wouldn't just listen. See? Eat your tks na
BusinessRe: Finally Gtbank Bans Use Of Their GT Mastercard On Paypal, Facebook, etc by otunde4u(m): 4:41pm On Feb 18, 2017
I try to make payment using paypal throughout yesterday. All effort was in vain. Had to visit the bank spent more than 2hours. Nigeria which way to go? Western union and monegram also not working.... what next? undecided undecided undecided[color=#006600][/color]
Technology MarketHow To Get A US Phone Number by otunde4u(op): 9:24am On Aug 04, 2014
You can now verify your Gmail account, Ebay account, Skrill account and other non Nigerian website which require phone verification before you can be approved into their system

STEP 1: Go to http://www.callusphone.com/ Select your country
enter your mobile number, then click on free trial 7days.
Fill the registration form. you will be redirected to where to choose
Available US number, select any of the number starting from
+14**** then click on forward. all incoming calls and messages will automatically be forwarded to your mobile number which you have earlier entered.
.....
Note: verification of eBay account
through sms take 2-3 days
before verification call from ebay official.
Nairaland GeneralNewest Method To Get A US Number by otunde4u(op): 8:49am On Aug 04, 2014
You can now verify your Gmail account, Ebay account, Skrill account and other non Nigerian website which require phone verification before you can be approved into their system

STEP 1: Go to http://www.callusphone.com/ Select your country
enter your mobile number, then click on free trial 7days.
Fill the registration form. you will be redirected to where to choose
Available US number, select any of the number starting from
+14**** then click on forward. all incoming calls and messages will automatically be forwarded to your mobile number which you have earlier entered.
.....
Note: verification of eBay account
through sms take 2-3 days
before verification call from ebay official.
EducationUniversity Of Ibadan. Invalid Login Parameter by otunde4u(op): 5:48pm On Sep 10, 2013
Please i don't know what has been going wrong with ui.ed.ng website. i made a payment of N2,000 has requested before the ASUU strike. i got my login detail and i was able to fill my screening form. i printout some details as requested. Now UI is decide to extend the date till september 12. i wanted to login using the details withwhich i have received befor but all i was getting as a response from the login page is invalid login parameter... i want to know whats really happening so i wouldn't be carrying about out-dated document. please help o! Email: otunde4u {@} gmail.com ....
WebmastersRe: How To Create A Scratch Card Powered Registration With Joomla by otunde4u(m): 3:09pm On Mar 14, 2013
Instructions
1. Connect to your MySQL database by
running this command in your
command prompt: mysql db_name
Replace "db_name" with your database
name and log in with your username
and password.
2. Run this piece of code to add a new
table and fill it with database fields:
CREATE TABLE `card` ( `id` int(100) NOT
NULL auto_increment, `name` varchar
(200) NOT NULL default '', `money`
bigint(255) NOT NULL default '0',
PRIMARY KEY (`id`) ) ENGINE=MyISAM
AUTO_INCREMENT=6 DEFAULT
CHARSET=latin1 AUTO_INCREMENT=6;
You can copy and paste this code to
your MySQL command line.
3. Create a new PHP Web page by using
this code: <!DOCTYPE html PUBLIC "-//
W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/
xhtml1-transitional.dtd"> <html
xmlns="http://www.w3.org/1999/
xhtml"> <head> <meta http-
equiv="Content-Type" content="text/
html; charset=utf-8" /> <title>Scratch
Card</title> </head> <body> <? if(isset
($_POST['new'])){ if (ereg('[^A-Za-z0-9]',
$_POST['name'])) { echo "Invalid Name
only A-Z,a-z and 0-9 is allowed."; }else{ $
sql = "INSERT INTO card SET id = '',
money = '100000', name = '" .mysql_
real_escape_string($_POST['name'])."'"; $
res = mysql_query($sql); echo "<meta
http-equiv=\"refresh\" content=
\"0;URL=scratch_card.php\">"; ?> <table
width="411" border="1"
align="center"> <tr> <td colspan="2"
align="center">Start a New Game Of
Scratch Card</td> </tr> <tr> <td
width="102">Choose a name</td> <td
width="293"><input name="name"
type="text" class="entryfield"
id="name" style='width: 98%;;
border:1px solid #000000; font-size:
10px; font-family: verdana; width: 98%
;' maxlength="20" /></td> </tr> <tr>
<td colspan="2" align="right"><input
name="card" type="submit"
class="button" id="card" onfocus="if
(this.blur)this.blur()" value="Start" /></
td> </tr> </table> </body> </html>
Save the page as "new_game.php." This
page allows users to start a new game.
They can use a text box to enter their
names. The name field interacts with
the database, so you can keep track of
your players.
4. Create another PHP Web page that will
appear after the "new_game.php" page.
Use this code for the second page:
echo "<meta http-equiv=\"refresh\"
content=\"0;URL=scratch_card.php\">";
<form method="post"> <?php $buy=$_
POST['buy']; $sql=mysql_query("SELECT *
FROM card WHERE name='$name'"wink; $
fetch=mysql_fetch_object($sql); $card1
= rand(1,3); $card2 = rand(1,3); $
disp1="default"; $disp2="default"; if($
go){ ///// check if your users have
enough money to play if($fetch->money
>= "10000"wink{ $new=$fetch-
>money-10000; mysql_query("UPDATE
card SET money='$new' WHERE name='$
name'"wink; }else { print "You don't have
enough money to buy a scratch card.";
exit(); } <!DOCTYPE html PUBLIC "-//
W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/
xhtml1-transitional.dtd"> <html
xmlns="http://www.w3.org/1999/
xhtml"> <head> <meta http-
equiv="Content-Type" content="text/
html; charset=iso-8859-1" />
<title>Scratch Card </title> </head>
<body> <table width="400" border="0"
align="center" cellpadding="0"
cellspacing="2" class="table"> <tr> <td
class="head"><div
align="center">Scratch card </div></
td> </tr> <tr> <td><div
align="center"></div> <div
align="center"></div> <div
align="center" class="cell">Try your
odds and try our scratch card game</
div></td> </tr> <tr> <td height="131"
class="cell"><div align="center">
<p>Add an image here if you want</p>
<p class="cell" >Prizes :</p> <ul> <li
class="cell">$100,000</li> </ul> <p><?
print"$message"; ?></p> <p> <form
method="post" action=""> <input
type="hidden" value="go" name="go">
<input type="submit" class="submit"
value="Buy a scratch card for $7500">
</form> </p> </div></td> </tr> </
table> </body> </html> Name the
second PHP page "scratch_card.php."
Note that this page contains both the
PHP code to manage your scratch card
game and the HTML code to control the
layout and functionality of the Web
page.
5. Upload the two pages to your website
and add a link on your home page to
"new_game.php." The scratch card
game is ready to entertain your users.

I've just finish designing a forum with easy to use and customised admin panel incase you want to have a forum like this of nairaland.com contact me on otunde4u(@)gmail.com
Computer MarketMy One Month Old Laptop For Sale by otunde4u(op):
My One month old HP pavilion G6 1 months old brand new laptop for sale. The HDD is 640 GB and the RAM is 4 GB with all other latest features include webcam. My name is Ogunbiyi Babatunde and I based in Lagos. My number is 07045233011. The price of the laptop is 75,000.

Reason of sale: A brother of mine just got me a better one.

Call me on 07045233011 for futher enquires

Educational ServicesRe: 2016 GCE FORM by otunde4u(m): 3:55am On Sep 07, 2012
get it when it is free.!!! Only on http://examsolutions.tk
Science/TechnologyRe: Discover How To Make $200 A Week by otunde4u(m): 7:34am On Aug 24, 2010
Man, if u can help me, i promise not 2 4get u. Pls whennever u\'re sndin d ebook pls snd wit ur phn. No. mine is otunde4u@yahoo.com
Technology MarketRe: Make 10$ Free And 100$ In A Space Of I Month by otunde4u(m): 7:26am On Aug 24, 2010
My gmail account is otunde4u@gmail.com

1 (of 1 pages)