Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,156,489 members, 7,830,464 topics. Date: Thursday, 16 May 2024 at 10:48 PM

Adesege's Posts

Nairaland Forum / Adesege's Profile / Adesege's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 19 pages)

Celebrities / Re: Mercy Aigbe Denying Her Husband Beat Her With Swollen Eye (Throwback Video) by Adesege(m): 9:14pm On Apr 28, 2017
Hmm
Programming / Re: I Need A Tutor On Programming by Adesege(m): 1:17pm On Apr 28, 2017
crowntoro:
This is the second that I wld be hearing this
A friend also told me that I can learn it on my own but bruhhhhhh, it looks to abstract.

Hi,

Why not enroll at MSN Academy.

Here's a link to learn more www.msnacad.com
Science/Technology / Re: I Saw This Snake Inside The Well As I Was Fetching Water..( Pics) by Adesege(m): 12:08pm On Apr 28, 2017
theNOISEmaker:
op said he came to the village to spend sometime with his grandmom.. op stop lying.. that's the village where you reside..
grin
theNOISEmaker:
op said he came to the village to spend sometime with his grandmom.. op stop lying.. that's the village where you reside..


Kiki
Programming / Re: Need Help On This by Adesege(m): 9:49pm On Apr 25, 2017
hexy40:


I Understand exactly what you are saying. I don't just agree with you on this particular case. Using three tables where one can serve.
if it were a situation where the user can choose more than one vehicle, then I will agree with you completely, but in this case I will stick with my version

Well, you dont say cos you dont want to use three tables instead of one then you shouldnt do the normal thing.

In your class in OOP, you were taught Objects, methods and properties, if you haven't forgotten.

The car is an object which might have some methods and properties.

Imagine you have a table called cars amd another table called car_owners.

If you want to reference a car in the car_owner table, which will be the best to use

1. The name of the car
2. The id of the car?
Programming / Re: Need Help On This by Adesege(m): 6:31pm On Apr 25, 2017
hexy40:

Please, give us a sample code let's see

I have given a detailed explanation here. I'm currently incapacitated to give a sample code now.

Adesege:
You need a normalized datatbase to achieve that.

First, you will have a table with list of users. Then another table with list of transport/cars.

You create another table for what users selects having foreigns keys to their parent table.

Then on the home page, you select all from the table "what users have selected" and join it with their parent table to get the car and user's name.

You display the car name on the first select dropdown. To display the users, you may need to use ajax or submit the form when users change the first select box or click on a submit button.

I hope you understand this
Programming / Re: Need Help On This by Adesege(m): 6:28pm On Apr 25, 2017
hexy40:
I have been thinking, in what situation can user name be changed? Once you comfirm email, the user name is permanent in most site if not all sites. My style will still work in life situation

No, that's a wrong assertion.

That Nairaland does not allow users change their username doesn't mean Nairaland uses username as foreign keys in other table.

Imagine Nairaland stores usernames as foreign keys in other tables, it will be difficult for them in future to allow users change their username.

Your style is a bad database design practice.

Here's an article on Wikipedia about Normalized database design

https://en.wikipedia.org/wiki/Database_normalization
Programming / Re: Need Help On This by Adesege(m): 11:11am On Apr 25, 2017
hexy40:

Judging from the question, i believe the OP is a biginner. One has to be comfortable with one database table before he can combine 2. I just think this will work for the now and he can advance at his own pace.

Beginner or not, it is normal coding standard to normalize your database except in some other cases where it may not be applicable.

In this case, normalized database is what the OP needs.
Programming / Re: Need Help On This by Adesege(m): 8:21am On Apr 25, 2017
hexy40:
Go to the console, copy and past these to create the data base and table


CREATE DATABASE vehicle;
USE vehicle;
CREATE TABLE users_transport(
id int(80) NOT NULL AUTO_INCREMENT,
users varchar(80) NOT NULL,
transport varchar(80) NOT NULL,
PRIMARY KEY(id)
);

INSERT INTO users_transport
(users,transport)VALUES
('steve009','car'),
('maonay','bike');
('labert','car');
('lalaland','bike');



Then open a php file and paste these:


<?php mysql_connect("localhost","root","" ) ;?>
<?php
$sel=mysql_select_db("vehicle" ) ;
?>
<html>
<form action="theNameOfThephpPage.php" method="POST">
<input type="submit" name="vehicle" value="car"/>
<input type="submit" name="vehicle" value="bike"/>
</form>

<?php
$selected=null;
if(isset($_POST['vehicle'])){$selected=urldecode($_POST['vehicle']);}

$s= "SELECT * FROM users_transport WHERE transport='$selected'";
$se= mysql_query($s);
echo"<select>";
while($sel=mysql_fetch_array($se))
{$us= $sel['users'];
echo "<option>".$us."</option>";

}
echo"</select>";

?>


</html>


this should run fine.
Then take your time to study the codes and mould it into what you want it to be.

A normalized datatbase will be the best to achieve this. Imagine a situation where the user's email or username can be changed, then that means the code may break in between.

So it will be best for him to store the user's and car's information somewhere. And use their ids as foreign keys in other table.

Also, i think the OP wants to be able to select the cars/bike and not click on static buttons.
Programming / Re: Need Help On This by Adesege(m): 8:15am On Apr 25, 2017
You need a normalized datatbase to achieve that.

First, you will have a table with list of users. Then another table with list of transport/cars.

You create another table for what users selects having foreigns keys to their parent table.

Then on the home page, you select all from the table "what users have selected" and join it with their parent table to get the car and user's name.

You display the car name on the first select dropdown. To display the users, you may need to use ajax or submit the form when users change the first select box or click on a submit button.

I hope you understand this
Jobs/Vacancies / Re: Top 4 IT Institutes In Nigeria by Adesege(m): 11:11pm On Apr 21, 2017
You may want to include MSN Academy (www.msnacad.com)
Education / Re: A Nairalander Builds A Social Media To Connect Students, Teachers And Schools by Adesege(m): 12:04am On Mar 26, 2017
To see what a page looks like, visit www.instutory.com/instutory
Education / Re: A Nairalander Builds A Social Media To Connect Students, Teachers And Schools by Adesege(m): 11:56pm On Mar 25, 2017
You are following me. I have followed back.
You can check your notifications by clicking on the bell icon

1 Like

Education / Re: A Nairalander Builds A Social Media To Connect Students, Teachers And Schools by Adesege(m): 11:51pm On Mar 25, 2017
SuperSuave:
I just registered, you did a great work bro. Is there someplace where you can navigate to to see posts from other members?

Thank you bro.

You can only see posts from people you follow.

You can invite people by clicking on Find friends or by searching using the search bar.

What's your handle? Let me follow you
Education / Re: A Nairalander Builds A Social Media To Connect Students, Teachers And Schools by Adesege(m): 11:43pm On Mar 25, 2017
SuperSuave:
The site looks cool but somehow too simple

Thanks for the review. Students like it simple too, dont you think so?

Follow me @adesege or click http://www.instutory.com/adesege
Education / A Nairalander Builds A Social Media To Connect Students, Teachers And Schools by Adesege(m): 11:26pm On Mar 25, 2017
Hi everyone,

I'm happy to introduce Instutory to you.

Instutory helps you search, connect and share with students, teachers, education institutions amd education related businesses.

Basically, if you own and operate anything that focuses on education or you are a student, then Instutory is the platform for you to connect.

You can calculate your CGPA, create study timetable, create groups etc.

If you are an education institution, you can accept registration on your page.

Dont let me talk much. Visit www.instutory.com to see it in action.

Im looking forward to seeing you guys there.

lalasticlala, seun, dominique. Make una epp the ministry o
Webmasters / Where In Lagos, Nigeria Can You Learn Any I.T Course For Less And Get More? by Adesege(m): 9:44pm On Feb 01, 2017
Where in Lagos, Nigeria can you learn any I.T course for less and get more?

At MSN Academy, you learn anything, get mentored by our excellent facilitators, get hired and co-work with other students.

Registration for the February batch is still on going. Limited seat available.

Class starts Feb 4th with a short induction ceremony at the Academy.

Visit www.msnacad.com to reserve a seat.

MSN Academy,
... changing Nigeria, through technology, one innovation at a time.

Programming / Re: Help On Msn Academy by Adesege(m): 1:36pm On Dec 19, 2016
Hello,

You can visit their website at www.msnacad.com. I can see that they have updated their website.

If you have any enquiry, just send them a mail care@msnacad.com or info@msnacad.com.

Thanks
Romance / Re: The Day I Almost Died After Checking My Girlfriend’s Phone (concluding Story) by Adesege(m): 8:23pm On Dec 07, 2016
.
Romance / Re: Funny Picture That Shows People Reactions About Ultimate Cycler by Adesege(m): 7:29pm On Dec 07, 2016
.
Jobs/Vacancies / Vacancy For Web Developer Trainer At Multi Server Network Academy by Adesege(m): 2:32pm On Oct 05, 2016
Multi Server Network (R) Academy provides innovative, cutting edge technological training in the most flexible environment available. Our goal is to successfully educate and prepare individuals seeking a career in Website Development, Programming and its related courses for certification in a variety of computer environments.

This is to inform the general public that application is hereby invited from interested applicants for the post of a Web Developer Trainer at Multi Server Network Academy.

Requirements

• Must have passion for teaching.
• Strong and confident communicator.
• Excellent inter-personal relation

Except otherwise stated, applicant must be below 30 years of age and must have a minimum of 1 year experience in their respective position.

Applicant must be resident in Lagos or its environs.

Interested applicant should forward a copy of their curriculum vitae to multiservernetwork@gmail.com on or before October 31st, 2016. Curriculum vitae must be in PDF format.

Thanks
for: http://www.instutory.com/b/msnacademy

Webmasters / Re: Vacancy For Web Developer, Creative Personnel And Mobile App Developer Trainer by Adesege(m): 10:04pm On Oct 03, 2016
HenriettaIB:
How much can you pay my boyfriend for android based on agreed time schedule?

Hi,

I will suggest your boyfriend sends his CV. If he's found suitable for the job, he will be invited for an interview where your question may get answered.

Thanks.
Webmasters / Vacancy For Web Developer, Creative Personnel And Mobile App Developer Trainer by Adesege(m): 5:28pm On Oct 03, 2016
Multi Server Network (R) Academy provides innovative, cutting edge technological training in the most flexible environment available. Our goal is to successfully educate and prepare individuals seeking a career in Website Development, Programming and its related courses for certification in a variety of computer environments.

This is to inform the general public that application is hereby invited from interested applicants into the following positions:

1. Web Developer Trainer
2. Creative Personnel Trainer
3. Mobile Application Developer Trainer

Requirements

• Must have passion for teaching.
• Strong and confident communicator.
• Excellent inter-personal relation

Except otherwise stated, applicant must be below 30 years of age and must have a minimum of 1 year experience in their respective position.

Applicant must be resident in Lagos or its environs.

Interested applicant should forward a copy of their curriculum vitae to multiservernetwork@gmail.com on or before October 31st, 2016. Curriculum vitae must be in PDF format.

Thanks
for: http://www.instutory.com/b/msnacademy

Programming / Vacancy For Web Developer, Creative Personnel And Mobile App Developer Trainer by Adesege(m): 4:57pm On Oct 03, 2016
Multi Server Network (R) Academy provides innovative, cutting edge technological training in the most flexible environment available. Our goal is to successfully educate and prepare individuals seeking a career in Website Development, Programming and its related courses for certification in a variety of computer environments.

This is to inform the general public that application is hereby invited from interested applicants into the following positions:

1. Web Developer Trainer
2. Creative Personnel Trainer
3. Mobile Application Developer Trainer

Requirements

• Must have passion for teaching.
• Strong and confident communicator.
• Excellent inter-personal relation

Except otherwise stated, applicant must be below 30 years of age and must have a minimum of 1 year experience in their respective position.

Applicant must be resident in Lagos or its environs.

Interested applicant should forward a copy of their curriculum vitae to multiservernetwork@gmail.com on or before October 31st, 2016. Curriculum vitae must be in PDF format.

Thanks
for: http://www.instutory.com/b/msnacademy

Jobs/Vacancies / Vacancy For Creative Personnel At Multi Server Network Academy by Adesege(m): 4:42pm On Oct 03, 2016
This is to inform the general public that application is hereby invited from interested applicants for the post of a Creative Personnel Trainer at Multi Server Network Academy.

Requirements

• Must have passion for teaching.
• Strong and confident communicator.
• Excellent inter-personal relation

Except otherwise stated, applicant must be below 30 years of age and must have a minimum of 1 year experience in their respective position.

Applicant must be resident in Lagos or its environs.

Interested applicant should forward a copy of their curriculum vitae to multiservernetwork@gmail.com on or before October 31st, 2016. Curriculum vitae must be in PDF format.

Thanks
for: http://www.instutory.com/b/msnacademy

Jobs/Vacancies / Re: Vacancy For Web Developer, Creative Personnel And Mobile App Developer Trainer by Adesege(m): 9:43am On Oct 03, 2016
.
Jobs/Vacancies / Vacancy For Web Developer, Creative Personnel And Mobile App Developer Trainer by Adesege(m): 12:05am On Oct 03, 2016
This is to inform the general public that application is hereby invited from interested applicants into the following positions:

1. Web Developer Trainer
2. Creative Personnel Trainer
3. Mobile Application Developer Trainer

Requirements

• Must have passion for teaching.
• Strong and confident communicator.
• Excellent inter-personal relation

Except otherwise stated, applicant must be below 30 years of age and must have a minimum of 1 year experience in their respective position.

Applicant must be resident in Lagos or its environs.

Interested applicant should forward a copy of their curriculum vitae to multiservernetwork@gmail.com on or before October 31st, 2016. Curriculum vitae must be in PDF format.

Thanks
for: http://www.instutory.com/b/msnacademy

Webmasters / Re: Who Noticed This On Linda Ikejis Blog by Adesege(m): 10:09pm On Sep 29, 2016
Aminat508:
hmmm this is what I'm seeing o


Aminatu¡!!!
Business / Re: Nigerians Are Worried About Economy - Dr. Folawiyo Kareem Olajoku by Adesege(m): 8:05pm On Sep 27, 2016
...
Software/Programmer Market / Re: Service Of A Professional Freelancing Web Developer Is Needed Urgently by Adesege(m): 8:29pm On Sep 22, 2016
dhtml18:

But wait, i no sabi the codigniter language framework you guys are talking about. I am sure it is some sort of a new language based on the codigniter framework?

While it has been widely acknowledged that English is not Nigeria's lingua franca, at least English language is taught at the basic level in Pre-Secondary schools.

I will want you to read this again with an unbiased mind and take cognisance note of the use of commas.


Must be proficient in HTML, CSS, Ajax, Jquery, PHP (Procedural and Object oriented), Codeigniter and other relevant languages.

It became important i respond to you and set the record straight.

Cheers!
Software/Programmer Market / Re: Service Of A Professional Freelancing Web Developer Is Needed Urgently by Adesege(m): 8:21pm On Sep 22, 2016
talk2hb1:

I fit in to all your criteria except that I dont know CodeIgniter as a Language undecided cry
Can I still Apply

If you are sure of your capability and what you can deliver, you can apply.

It is up to the business owner to shortlist you for an interview.

Regards.
Software/Programmer Market / Service Of A Professional Freelancing Web Developer Is Needed Urgently by Adesege(m): 9:13am On Sep 22, 2016
Hello,

The Service of a professional freelancing web developer is currently needed urgently.

While this position is not a full time, it is required that interested candidate must not be in paid employment, or must be ready to quit his/her job, and must be willing and ready to work round the clock to get job done fast.

The individual must have working experience in the field and portfolio of jobs done(Optional).

REQUIREMENTS:

1. Any qualification (SSCE, B.Sc or its equivalent)
2. Must be living in Lagos
3. Must be proficient in HTML, CSS, Ajax, Jquery, PHP (Procedural and Object oriented), Codeigniter and other relevant languages.
4. Must know how to convert a non-wordpress site into wordpress.
5. Must know how to create wordpress theme and plugins.
6. Must know how to design user interface and wireframe.
7. Must be an intermediate English speaker.

If such individual meets all these requirements, a mail should be sent to multiservernetwork@gmail.com detailing the following:

- Full Name
- Address
- Contact phone number
- Skills acquired
- Qualification (If any)
- Portfolio of jobs executed (If any)
- Age

Application closes on September 26, 2016.

Thanks.

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 19 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 47
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.