₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,326,302 members, 8,425,955 topics. Date: Saturday, 13 June 2026 at 11:48 AM

Toggle theme

Ayodeleolu2014's Posts

Nairaland ForumAyodeleolu2014's ProfileAyodeleolu2014's Posts

1 (of 1 pages)

Tech JobsRe: He Needs Advice As A Computer Science Student On Where To Do My I.T by ayodeleolu2014: 6:59pm On Nov 13, 2014
which city do u wanna do it?
Web MarketRe: Purchase This Website FREE by ayodeleolu2014: 6:55pm On Nov 13, 2014
wapka,pbnl,jcms etc........

#Gone are those days!
ProgrammingRe: Help A Nairalander On An I.T Placement. by ayodeleolu2014(op): 7:58pm On Oct 27, 2014
xij38580:
try applying to cistematix in Bodija
K. Thanks, bro.

Do you have there email?

If Yes, please send it so that I can attach my CV and I.T application letter to them.

Thanks.
Jobs/VacanciesRe: Help A Nairalander On An I.T Placement by ayodeleolu2014(op): 6:36am On Oct 26, 2014
guys, please help ur man.
ProgrammingRe: Help A Nairalander On An I.T Placement. by ayodeleolu2014(op): 6:34am On Oct 26, 2014
perdadventure, you guys have any place in mind, pls inform me. Thanks.
WebmastersRe: Help A Nairalander On An I.T Placement by ayodeleolu2014(op): 6:31am On Oct 26, 2014
jabless:
Please call me on 07034635234
I based in ibadan
Alright, I'll. Thanks.
WebmastersRe: Help A Nairalander On An I.T Placement by ayodeleolu2014(op): 6:30am On Oct 26, 2014
greenmouse:
As an applicant you should not be too demanding.

I suggest you edit your initial post, pay wise and both web and computer engineer choice show you ain't serious abt getting a placement.
Thanks man. I've done that.

Perdventure, you have any place in mind, please inform me.
WebmastersRe: Help A Nairalander On An I.T Placement by ayodeleolu2014(op): 10:21am On Oct 24, 2014
guys, pls help.
Jobs/VacanciesRe: Help A Nairalander On An I.T Placement by ayodeleolu2014(op): 10:20am On Oct 24, 2014
guys.. please help.
ProgrammingRe: Help A Nairalander On An I.T Placement. by ayodeleolu2014(op): 10:13am On Oct 24, 2014
yea. because that is where i reside. if the company is into web development alone, it's ok by me.
ProgrammingRe: Help A Nairalander On An I.T Placement. by ayodeleolu2014(op): 9:25am On Oct 24, 2014
guys.... please help.
ProgrammingRe: Help A Nairalander On An I.T Placement. by ayodeleolu2014(op): 11:33pm On Oct 23, 2014
Don't just view this topic, please help.
WebmastersRe: Help A Nairalander On An I.T Placement by ayodeleolu2014(op): 11:30pm On Oct 23, 2014
thanks bro. but can u pls tell me if u knw one in ibadan.
WebmastersHelp A Nairalander On An I.T Placement by ayodeleolu2014(op):
Good evening to you all.
I'll starting my I.T by next year but I have no idea on where to do it.
Anybody that knows any web development firm in ibadan where I can apply for should please comment.

Thanks.
Jobs/VacanciesHelp A Nairalander On An I.T Placement by ayodeleolu2014(op):
Good evening to you all.
I'll starting my I.T by next year but I have no idea on where to do it.
Anybody that knows any web development firm in ibadan where I can apply for should please comment.

Thanks.
ProgrammingHelp A Nairalander On An I.T Placement. by ayodeleolu2014(op):
Good evening to you all.
I'll starting my I.T by next year but I have no idea on where to do it.
Anybody that knows any web development firm in ibadan where I can apply for should please comment.

Thanks.
ProgrammingRe: Results For Programming Challenge Season 2 by ayodeleolu2014: 2:32am On Aug 25, 2014
seriously, the result for developers is taking too long than expected... it's over 3 weeks now.
Had it been u'v told dem(developers) earlier that the result will b out after a month, we wouldn't have been so eager to see the result.
@ All judges, please be fast about it and let the season 3's challege asap!
WebmastersWeb Hosting Price by ayodeleolu2014(op): 12:00pm On Aug 10, 2014
I'm a beginner at web development and I've done some little stuffs on web.
I wanna upload two websites.
Does anybody have an idea on the cost of web hosting + domain?

I wanna buy .com and .org domain.
WebmastersPreg_match Problem In Php by ayodeleolu2014(op): 1:51am On Jul 26, 2014
I'm currently working on a small web application called expenses whereby can save your expenses to a mysql db via php array.

Here is how it works.

In the first page, you'll have to enter the number of items that you want to save their expenses to the mysql db.

So, let's assume that you enter 3 as the number of items, you'll be redirected to another page whereby you'll be provided with textboxes where you'll enter the name of the items and their corresponding amounts and then click on save button to save it to the database.

So, how can i restrict the amount textboxes to accept only numeric characters and a dot in such a way that numeric character must start, then followed by a dot (which is optional) and it must also end with a numeric character.

e.g 100.8 , 250.4 , 250, 300.8 , 200.

This is my code


foreach ($amount as $digit)
{
if((!ctype_digit($digit)) || ($digit<1) || (!preg_match("/[\.]$/",$digit)))
{
echo " Only positive, numeric, non-zero digits and a dot are allowed for amount of item";
exit();
}
}

I'll be glad if you help me correct this because it's been up to 2 days now that I've been battling with this.

THANKS AND GOD BLESS!
ProgrammingRe: Preg_match Problem In Php by ayodeleolu2014(op): 1:48am On Jul 26, 2014
Programmers in nairaland, please help.. dnt just view this thread!
ProgrammingPreg_match Problem In Php by ayodeleolu2014(op): 8:05pm On Jul 25, 2014
I'm currently working on a small web application called expenses whereby can save your expenses to a mysql db via php array.

Here is how it works.

In the first page, you'll have to enter the number of items that you want to save their expenses to the mysql db.

So, let's assume that you enter 3 as the number of items, you'll be redirected to another page whereby you'll be provided with textboxes where you'll enter the name of the items and their corresponding amounts and then click on save button to save it to the database.

So, how can i restrict the amount textboxes to accept only numeric characters and a dot in such a way that numeric character must start, then followed by a dot (which is optional) and it must also end with a numeric character.

e.g 100.8 , 250.4 , 250, 300.8 , 200.

This is my code


foreach ($amount as $digit)
{
if((!ctype_digit($digit)) || ($digit<1) || (!preg_match("/[\.]$/",$digit)))
{
echo " Only positive, numeric, non-zero digits and a dot are allowed for amount of item";
exit();
}
}

I'll be glad if you help me correct this because it's been up to 2 days now that I've been battling with this.

THANKS AND GOD BLESS!

1 (of 1 pages)