₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,102 members, 8,420,341 topics. Date: Thursday, 04 June 2026 at 04:54 PM

Toggle theme

Ebottabi's Posts

Nairaland ForumEbottabi's ProfileEbottabi's Posts

1 (of 1 pages)

ProgrammingPlease List Of Good Universities In Nigeria Offering Computer Science Bsc by ebottabi(op): 6:57pm On Oct 01, 2010
Please i need a list of good universities in Nigeria offering computer science, thats Government or state universities and also i wish to ask if the University of Nigeria Nsukka has a good department on computer science?

thanks
EducationPlease List Of Good Universities In Nigeria Offering Computer Science Bsc by ebottabi(op): 6:55pm On Oct 01, 2010
Please i need a list of good universities in Nigeria offering computer science, thats Government or state universities and also i wish to ask if the University of Nigeria Nsukka has a good department on computer science?

thanks
WebmastersRe: Get Your Website Reviewed Here by ebottabi(m): 9:00am On May 20, 2009
man i think there are even free css templates online they can get one and modify if can't do the design themselve. what type of design is that? not design pattern is being respected. they still have a long way to go
WebmastersRe: All Webmasters And Sftware Genuises by ebottabi(m): 8:57am On May 20, 2009
what i will do advise you for is to go for open source IDEs. you can use softwares like PHP Desginer 2007; just Google it, you have notepad++ and others you must not use dreamweaver for the start; later when you more familiar with the concepts of web application design and development you can then look on something more advanced ok bro. feel free to contact for further questions
WebmastersRe: All Webmasters And Sftware Genuises by ebottabi(m): 8:48am On May 20, 2009
have you check if you have entered the right license key; i think you will have to enter the license key before you can use the dreamweaver package
WebmastersRe: Javascript A Home by ebottabi(m): 8:47am On May 20, 2009
i don't this is a forum to show off your skills. look for somewhere else bro. angry
WebmastersRe: Pls Check My Website Out by ebottabi(m): 7:55pm On Mar 03, 2009
man what i can tell you is to go back and learn how to desing, just check at this http:ebot.uuuq.com,
and you will see how to work simple designs and more javascript and PHP
Tech JobsRe: Urgent Employment J2ee, J2me, Java Cards, Xml And Web Service Progrmmer Needed by ebottabi(m): 11:13am On Oct 06, 2008
Afam i dont have time for novice like you, i got more important stuffs to do,
Tech JobsRe: Urgent Employment J2ee, J2me, Java Cards, Xml And Web Service Progrmmer Needed by ebottabi(m): 5:12pm On Oct 04, 2008
Afam let me tell some few stuffs you don't know, google thus not run any php, undecided it is Python , so go get yourself some knowledge about google before posting any thing about them, slowpoke
Tech JobsRe: Urgent Employment J2ee, J2me, Java Cards, Xml And Web Service Progrmmer Needed by ebottabi(m): 3:37pm On Sep 30, 2008
hey they are talking about enterprise development here, i think people should learn well and try to differenciate between enterprise development and standard web developement; if you talk about persistency php will never be use in cases, that is where it fails, so if there are asking on J2EE J2ME there is a reason slowpoke. sad
ProgrammingRe: Another Bill Gate In Nigeria by ebottabi(m): 3:33pm On Sep 30, 2008
my friend learn to say things the right way,
even the world don't get that type in two years, i think you know what the articles is reallly pointing out
WebmastersHow To Implement Captcha(made Simple On Procedural Php) by ebottabi(op): 7:09pm On Sep 26, 2008
this is how to implement a simple captcha on one's site,
first create an index.php file then insert these code:

<?php session_start(); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>ebot tabi Captcha</title>
<link href="style/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="main">
<div class="caption"> CAPTCHA DEMO</div>
<div id="icon">&nbsp;</div>
<?php
if (isset($_POST['submitBtn'])){
$secCode = isset($_POST['secCode']) ? strtolower($_POST['secCode']) : "";
if ($secCode == $_SESSION['securityCode']) {
echo "<p>The result code was valid!<br/></p>";
echo "<p><a href=\"".$_SERVER['PHP_SELF']."\">Repeat the test!</a><br/><br/></p>";
unset($_SESSION['securityCode']);
$result = true;
}
else {
echo "<p>Sorry the security code is invalid! Please try it again!</p>";
$result = false;
}
}

if ((!isset($_POST['submitBtn'])) || (!$result)){
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" >
<table width="400">
<tr><td>Security code: <input class="text" name="secCode" type="text" size="10" /></td>
<td><img src="security.php" alt="security code" border="1" /></td>
</tr>
<tr><td colspan="2" align="center"><br/><input class="text" type="submit" name="submitBtn" value="Send" /></td></tr>
</table>
</form>
<?php
}
?>
<div id="source">Design by Ebot Tabi</div>
</div>
</body>




then create another file called sercurity.php
then insert these code:
<?php
session_start();

$width = 120;
$height = 40;
$length = 5;

$baseList = '0123456789abcdfghjkmnpqrstvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';

$code = "";
$counter = 0;

$image = @imagecreate($width, $height) or die('Cannot initialize GD!');

for( $i=0; $i<10; $i++ ) {
imageline($image,
mt_rand(0,$width), mt_rand(0,$height),
mt_rand(0,$width), mt_rand(0,$height),
imagecolorallocate($image, mt_rand(150,255), mt_rand(150,255), mt_rand(150,255)));
}

for( $i=0, $x=0; $i<$length; $i++ ) {
$actChar = substr($baseList, rand(0, strlen($baseList)-1), 1);
$x += 10 + mt_rand(0,10);
imagechar($image, mt_rand(3,5), $x, mt_rand(5,20), $actChar,
imagecolorallocate($image, mt_rand(0,155), mt_rand(0,155), mt_rand(0,155)));
$code .= strtolower($actChar);
}

header('Content-Type: image/jpeg');
imagejpeg($image);
imagedestroy($image);

$_SESSION['securityCode'] = $code;

?>


just follow the codes they quite simple
ProgrammingRe: Help Wit Java Programming by ebottabi(m): 4:20pm On Sep 24, 2008
get to this site for free training www.javapassion.com or if any other problems let me know at ebottt@yahoo.com, don't try to spam i can release web crawler to get all you details and then can guess what will happen to you
WebmastersRe: Avoiding Automated Form Submission By Bots, Is reCaptcha The Only Answer? by ebottabi(m): 4:13pm On Sep 24, 2008
get to learn some php, it is easily done with php, i have beening them very easily, i will post some codes on this matter some days from now, let say 2days from now, since i got alot of work at hand,
ProgrammingRe: I Intend Studying Programming Generally? Please Advice! by ebottabi(m): 4:04pm On Sep 24, 2008
get yourself some java programming course online which is free, you just need to download.
for any further help, i will give it to you, the site is www.javapassion.com, and i will mail you links where you can download as many ebooks as possible for free.
well i am a software programmer with languages: Java, PHP, Javascript, Xhtml, C/C#, CSS, and i am looking into Ruby. so i will tell just have the passion for it and also work hard, programming is not that difficult like what people normally say

1 (of 1 pages)