₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,218 members, 8,449,191 topics. Date: Tuesday, 21 July 2026 at 12:21 PM

Toggle theme

Micodon's Posts

Nairaland ForumMicodon's ProfileMicodon's Posts

1 2 3 4 5 6 7 8 ... 15 16 17 18 19 20 (of 20 pages)

WebmastersRe: Mysql, Mysqli Or Pdo? by micodon(m): 10:42am On Aug 12, 2014
MySQL is a database Management System.

MySQLi is just an Extension of MySQL. It's Just a different Interface to accessing MySQL functions. Those saying MySQL is deprecated don't know what they are saying.

PDO is not a database system. It's an ABSTRACTION LAYER.

My Point? You shouldn't compare those three. They're functionally different
WebmastersRe: Prolific And Professional Website Designer And Developer Needed by micodon(m):
My latest job (alabagames.com.ng) uses Voguepay as its payment gateway, where you can pay with MasterCard, VisaCard. Contact me on 08107535260 or ugwueze.michael@gmail.com
WebmastersRe: Is It True That PHP Is An Ugly Language? If So, What Are The Alternatives? by micodon(m): 7:57am On Aug 04, 2014
PHP borrows its syntax style from C÷÷. Is C÷÷ an Ugly language? PHP is relatively fast. Faster than even Ruby. People just go online and paste crap either because they don't understand stuffs or cos of Bias. PHP is great for the web. Its not as elegant as Ruby. But, its not Ugly. Period!!! FYI, I do PHP, Python, RoR, and ASP.NET (with C#).
Web MarketRe: *Urgent Job* I Want An International Standard Dating Website Like Eharmony.com by micodon(m): 9:14pm On Aug 02, 2014
Keep insulting us
WebmastersRe: What's The Differenc In These Loops FOREACH(), WHILE() by micodon(m): 10:46pm On Jul 27, 2014
cbrass: Am so greatfull for all your response especially that of adewasco , I for one think the WHILE LOOP and the FOREACH LOOP have little differences, the reason am saying this is I ran into a problem 2days ago and am yet to figure the perfect answer.

I want students to answer questions from a table "questions" after that question is answered another one comes in, and another one comes in...on and on and on, but where I have an issue is the questions the student has answered keep coming back again when all questions has been answered, its starts from the top again. What I want to do is if it has finished echoing out the questions for that particular student it should stop and not start all over again..any ideas on how to solve thathuh Have tried a lot but none seems working
Hmmmm. First thing to do is to select all questions and store them as an associative array.

Now to display the questions, loop through the associative array. MAKE SURE THAT AFTER ECHOING THE QUESTION, YOU USE THE array_shift METHOD ON THE ASSOCIATIVE ARRAY.
WebmastersRe: DHTML, Or Perhaps Other Developers, I Need You. by micodon(m): 1:00pm On Jul 27, 2014
I can build from scratch.
Preferred Language: PHP.
Frameworks: Phalcon or Laravel.
UI Library: YUI.
DB: MySQL.
Key-Value Store: Redis.
My Contact: 08107535260
WebmastersRe: Please Help With This Sql Problem by micodon(m): 11:39pm On Jul 24, 2014
You need 3 tables. Users table (id, username, fname...). Conversations Table (id, user_one, user_two). Messages Table (id, sender_id, message, date). To get a user's conversation list (say the user's id is stored in a variable $user_id),


"SELECT m.id as mid, u.fname, u.lname FROM messages m, users u WHERE m.user_one = $user_id OR m.user_two = $user_id AND CASE m.user_one = $user_id THEN u.id = m.user_one CASE m.user_two =$user_id THEN u.id = m.user_two END".


To get a particular convo between two people, you need the convo_id gotten from the query above. If the convo_id is stored in $convo_id, the query


"SELECT * FROM conversations JOIN users ON users.id = conversations.sender_id WHERE conversations.id = $convo_id"


Well there may be errors as that's from the top of my head. The best way of designing databases is to normalize where possible as this will remove redundancy. NORMALIZE WHERE POSSIBLE. ALWAYS
WebmastersRe: I Need Help Designing This E-commerce Website by micodon(m): 11:12pm On Jul 24, 2014
Wordpress?? Never. Hire Someone
WebmastersRe: Looking For A Web Developer Based In Port Harcourt by micodon(m): 4:39pm On Apr 19, 2013
I'm based in port-harcourt. 08107535260 www.michaeleze.com
Web MarketRe: Want To Design A Website by micodon(m): 5:05pm On Mar 26, 2013
I'm Michael. You can contact me on 08107535260 www.michaeleze.com, www.exgamesonline.com, currently rebuilding www.eco9ja.com
WebmastersRe: All Nairaland Webmasters Drop Your Site Url Here. Let Vote 4 The Top Design. by micodon(m): 5:49pm On Mar 04, 2013
WebmastersRe: Website Design In Nigeria by micodon(m): 5:44pm On Mar 04, 2013
www.michaeleze.com he is a very good freelancer
ProgrammingRe: PHP Or Coldfusion: Which Is Better? by micodon(m): 9:54am On Jan 23, 2012
Koderiter, listen to yourself. PHP and COldfusion, which is better. i'm guessing you are gonna choose one. if one is better, why cant there be a language that can be termed "best". Do your research
ProgrammingRe: PHP Or Coldfusion: Which Is Better? by micodon(m): 7:52pm On Jan 18, 2012
you are definitely not a web programmer. if you are, you ought to know that PHP is the best dynamic web development language for the web.

ColdFusionhuh i cant believe you. PHP's chief competitor is even ASP. your question should be rephrased to "PHP and Coldfusion, which do you prefer?"
WebmastersRe: A Web Designer Needed For Immediate Engagement by micodon(m):
Contact me, 08107535260 or visit my web site www.michaeleze.com
WebmastersRe: Guys Please Help Me Out Here. I Don't Know What Is Wrong by micodon(m): 7:29pm On Jan 18, 2012
i believe u re tracking ur user's login status via a session variable, Wat u need to do, is to destroy that session when the user clicks the logout link. Destroy session not unset session
WebmastersRe: Urgent Help On Web Design by micodon(m): 5:28pm On Dec 19, 2011
fireworks is for graphics design, mate,
WebmastersRe: To Make Your Website Wap Compatible Like .net? How Do You Do It? by micodon(m): 11:40pm On Nov 18, 2011
a website is a website, a wapsite is a wapsite. most of those sites u thnk re compatible with both web browsers and mobile browsers just have a wap version written in WML. javascript code is used to detect ur browser. if it detects a mobile browser, u re redirected to the wapsite. SIMPLE! u can optimize ur website for mobile surfing, but u cant make it compatible for both web browsers and mobile browsers. another thing is that most mobile phones are now powerful enof to render web browsers so that they appear jus fine
WebmastersRe: Create A Payment System That Works With Your Site by micodon(m): 11:31pm On Nov 18, 2011
hw far av u gone?

which lang re u using----PHP or ASP?

be detailed in ur exlanation so dat i can solve ur probs with ease
WebmastersRe: How Can I Make This Javascript Work by micodon(m): 11:28pm On Nov 18, 2011
Next Time post the full code. i think innerHtml shld solve ur problem
WebmastersRe: Seun Treat This Bug by micodon(m): 11:14pm On Nov 18, 2011
its not a bug, the link is probably broken
ProgrammingRe: Python Or C++ Which Is Bera by micodon(m): 11:04pm On Nov 18, 2011
u gotta be kidding me, even the python language/platform was written in C. C++ is more powerful(probably the most powerful programming language around) but very strict. python is robust and easy
ProgrammingRe: Pls Able Programmers, Help! by micodon(m): 9:48pm On Nov 18, 2011
how much re u willing to pay? i can do it in VB.NET or in JAVA, or Python. Text me if u re interested: 08183126637. TEXT ONLY
WebmastersRe: I Need Gateway For Mtn Network by micodon(m): 9:27pm On Sep 05, 2011
from ur statement, im guessing u dont know wat a gateway is. a gateway is ur "gate"to the internet. wanna have ur own gateway? buy a router and pay one of the service providers around.
Rap BattlesRe: If You Think You Can Spit Drop A Punchline And Awiat My Rating by micodon(m): 12:48pm On May 23, 2011
with an ass so rear and visible like a license plate



i'm so hot, i make fire sweat
ComputersRe: Help Me! I've Been Struck By The 'blue Screen Of Death' (bsod) by micodon(m): 1:17pm On Apr 13, 2009
bsod-- operating system crash. simply boot from your operating system cd. i.e reinstall windows
PhonesRe: I Need An Emulator For Ps1 S60. by micodon(m): 11:19am On Dec 02, 2008
my guy it is impossible. you only have ps1/ps2/ps3 emulators for ur desktop or laptop computer
European Football (EPL, UEFA, La Liga)Re: Chelsea Fans: Identify Yourselves Here (Old) by micodon(m): 3:36pm On Jul 07, 2008
blues 4 life!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

European Football (EPL, UEFA, La Liga)Re: Chelsea Or Manchester United, Whose Cup? by micodon(m): 11:50am On May 15, 2008
chelsea in their first ever champs. league final. instead of losing , they'll kill themselves on the pitch. i think chelsea will carry the da. dont 4get that they have an incredible record in the  finals of any competition

1 2 3 4 5 6 7 8 ... 15 16 17 18 19 20 (of 20 pages)