Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / NewStats: 3,226,642 members, 8,067,698 topics. Date: Saturday, 01 February 2025 at 12:55 PM |
Nairaland Forum / Science/Technology / Programming / I Want To Learn Programming. Which Language Should I Start With? (708710 Views)
As A Computer Science Student,which Language Should I Start Learning / Which Programming Language Should He Go For? / I Want To Learn Computer Programming, What Language Should I Learn First? (2) (3) (4)
(1) (2) (3) ... (107) (108) (109) (110) (111) (112) (113) ... (169) (Reply) (Go Down)
Re: I Want To Learn Programming. Which Language Should I Start With? by promisedeco(m): 6:56am On Jul 17, 2019 |
Eggovic:Thank you sir for the response. My problem now is that I have made my first payment |
Re: I Want To Learn Programming. Which Language Should I Start With? by Eggovic: 8:04am On Jul 17, 2019 |
promisedeco:You're welcome chief. It's either you sacrifice that 1st installment to chase your dreams or you continue with the mediocre training you're getting there. This depends on your financial capacity though. |
Re: I Want To Learn Programming. Which Language Should I Start With? by promisedeco(m): 8:42am On Jul 17, 2019 |
Eggovic:That's the thing boss. I can't afford to lose such amount in 1week. And I don't think they will refund me. Even if the take half I don't don't sef |
Re: I Want To Learn Programming. Which Language Should I Start With? by Eggovic: 8:45am On Jul 17, 2019 |
promisedeco:It's well. Just chase this dream relentlessly 1 Like |
Re: I Want To Learn Programming. Which Language Should I Start With? by kimduhan2: 9:36am On Jul 17, 2019 |
I think you can study java, php first. I think you need to go to college or courses will study programming lnguages. I am not web developer but my work related to web design and app developing. I cooperate with one of the custom software developing company EffectiveSoft |
Re: I Want To Learn Programming. Which Language Should I Start With? by promisedeco(m): 9:49am On Jul 17, 2019 |
Eggovic:Thank you for the kind words.. #respect |
Re: I Want To Learn Programming. Which Language Should I Start With? by Eggovic: 10:06am On Jul 17, 2019 |
promisedeco:All the best brother. #respect |
Re: I Want To Learn Programming. Which Language Should I Start With? by treasureboy09(m): 12:42pm On Jul 17, 2019 |
InfinityFabric:. Thanks for this I have been looking for something like this for a very long time, thanks ones more....kindly share other resourceful materials...thanks. |
Re: I Want To Learn Programming. Which Language Should I Start With? by iCode2: 11:33pm On Jul 17, 2019 |
Eggovic:Thanks chief. |
Re: I Want To Learn Programming. Which Language Should I Start With? by Eggovic: 2:53am On Jul 18, 2019 |
iCode2:You're welcome boss |
Re: I Want To Learn Programming. Which Language Should I Start With? by Csami(m): 9:39pm On Jul 18, 2019 |
i need help with this code I have a form which i collect the input using a post method [i<form method="post" autocomplete="on" enctype="multipart/form-data"> <div class="form-group"> <label for="name" class="mr-sm-2" id="tag"></label> <select class="form-control" id="categoryname" name="category"> <option value="">---SELECT CATEGORY---</option> <?php $sql = "SELECT * FROM category"; $res = mysqli_query($connection, $sql); while ($r = mysqli_fetch_assoc($res)) { ?> <option value="<?php echo $r['id']; ?>"><?php echo $r['categoryname']; ?></option> <?php } ?> </select> <label for="name" class="mr-sm-2" id="tag"></label> <input type="text" class="form-control" id="title" placeholder="Title" name="title" required> <label for="content" class="mr-sm-2" id="tag"></label> <textarea class="form-control" rows="10" id="content" placeholder="content" name="content" required></textarea> <label for="pic" class="mr-sm-2" id="tag">Profile Picture</label> <input type="file" class="form-control" name="pic" id="pic" placeholder="Picture"> <br> <button class="btn btn-info" type="submit">post</button> </div> </form>][/i] Here is the php if (isset($_POST) & !empty($_POST)) { $category = $_POST['category']; $title = mysqli_real_escape_string($connection,$_POST['title']); $content = mysqli_real_escape_string($connection,$_POST['content']); $image = $_FILES['pic']['name']; $target = "uploads/".basename($image); move_uploaded_file($_FILES['pic']['tmp_name'], $target); $sql = "INSERT INTO posts (userid, categoryid, post_title, post_content, post_image) VALUES ('$userid', '$category', '$title', '$content', '$image')"; $result = mysqli_query($connection, $sql); if ($result) { header("location: viewpost.php " }else{ $fmsg = "Failed to post"; } } The problem is that the page i'm directing to throws me this errors because i don't know how to capture the id Notice: Undefined index: id in C:\xampp\htdocs\project\viewpost.php on line 14 Notice: Trying to get property of non-object in C:\xampp\htdocs\project\viewpost.php on line 69 <?php $postsql = "SELECT * FROM posts WHERE id = $id"; $postquery = mysqli_query($connection, $postsql); if ($postquery->num_rows > 0) { while($row = $postquery->fetch_assoc()) { $post_title = $row['post_title']; $userid = $row['userid']; $post_date = $row['post_date']; $post_image = $row['post_image']; $post_content = $row['post_content']; ?> The bold is causing the error cause i don't how to capture the id using GET method in a POST form |
Re: I Want To Learn Programming. Which Language Should I Start With? by Nobody: 8:37pm On Jul 19, 2019 |
Should I go to unilag to study computer science? Though I want to be a bad ass programmer |
Re: I Want To Learn Programming. Which Language Should I Start With? by Csami(m): 7:52pm On Jul 20, 2019 |
Person no fit use una get hope sha |
Re: I Want To Learn Programming. Which Language Should I Start With? by cyberhike(m): 1:30am On Jul 21, 2019 |
Bismark009:Hey bro, could you please tell me where you're tuning this training and how much it costs.. Thanks in anticipation 1 Like |
Re: I Want To Learn Programming. Which Language Should I Start With? by Hallenjay: 7:10am On Jul 21, 2019 |
Csami:pls, I s der any way u can guilde me to make a simple app using code block and c language... I know they r many alternative but I've codeblock installed and I'm currently learning c (from basic thou). Someone should put me through. |
Re: I Want To Learn Programming. Which Language Should I Start With? by Csami(m): 7:35am On Jul 21, 2019 |
Hallenjay: Sorry! I just know basic php 1 Like |
Re: I Want To Learn Programming. Which Language Should I Start With? by iCode2: 3:27pm On Jul 21, 2019 |
Pls someone should suggest good YouTube tutorial videos or any material on front end (or any aspect of front end). Thanks |
Re: I Want To Learn Programming. Which Language Should I Start With? by iCode2: 7:17pm On Jul 21, 2019 |
Eggovic:I'm having issues with this website. Is there any browser that makes it user friendly? The editor isn't working for me. I can't edit text.
|
Re: I Want To Learn Programming. Which Language Should I Start With? by Semtu(m): 7:47pm On Jul 21, 2019 |
iCode2: Load it in desktop view.. Click those three dots at the top right, you'll see the option there 1 Like |
Re: I Want To Learn Programming. Which Language Should I Start With? by Eggovic: 8:28pm On Jul 21, 2019 |
iCode2:It will be better if you use a laptop o. |
Re: I Want To Learn Programming. Which Language Should I Start With? by AroFx: 12:01pm On Jul 22, 2019 |
I am newbie Stumbled upon this thread last week and i decided to start with python. I am still studying the basics: variables, types, values, Boolean expression, logic, etc. And today i wrote my first script that can be used to convert a Fahrenheit degree to celcius degree to challenge myself. When excuted in python interpreter It will ask user for his name Tell user that his same name is his password If password is correct, it will move forward to conversion stage which will convert any Fahrenheit degree to celcius, and if not it will write incorrect password and close. Also, if during conversation, a user put anything other than number, it will prompt user to type in just number. I just hope i become better as i progress. If post == encouraging: print ("press like" elif post == motivating: print ("press share" else: print ("comments is welcome) Thanks 5 Likes |
Re: I Want To Learn Programming. Which Language Should I Start With? by Hallenjay: 3:23pm On Jul 22, 2019 |
pls, I s der any way u can guilde me to make a simple app using code block and c language... I know they r many alternative but I've codeblock installed and I'm currently learning c (from basic thou). Someone should put me through. |
Re: I Want To Learn Programming. Which Language Should I Start With? by iCode2: 12:33pm On Jul 23, 2019 |
Re: I Want To Learn Programming. Which Language Should I Start With? by Campusmyguy: 9:59am On Jul 24, 2019 |
[color=#990000][/color]house pls is it possible for and ict school should teach u mobile,web and desktop programming at once or is there any programming course to learn these 3 at once |
Re: I Want To Learn Programming. Which Language Should I Start With? by Bismark009: 5:42pm On Jul 24, 2019 |
cyberhike:call me on 08084448983 |
Re: I Want To Learn Programming. Which Language Should I Start With? by vixpal: 8:10am On Jul 27, 2019 |
Here to learn |
Re: I Want To Learn Programming. Which Language Should I Start With? by 4gunners(m): 4:27pm On Jul 28, 2019 |
Who is Osogbo that can teach me programming. |
(1) (2) (3) ... (107) (108) (109) (110) (111) (112) (113) ... (169) (Reply)
(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 - 2025 Oluwaseun Osewa. All rights reserved. See How To Advertise. 55 |