Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,159,200 members, 7,839,089 topics. Date: Friday, 24 May 2024 at 01:36 PM

Ivcraig's Posts

Nairaland Forum / Ivcraig's Profile / Ivcraig's Posts

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

Programming / Re: Phpbrowserbox Update - Google Chrome + PHP/MySQL Server In One! by ivcraig(m): 10:52am On Jan 13, 2016
Excellent job bro. This is exactly what I need. Keep me updated on new projects.
Webmasters / Re: Senior Php/mysql Developer by ivcraig(m): 2:35pm On Jan 11, 2016
Anyone with all this skills should be already working with Google or Facebook. I qualify for this job, but I don't use any framework or cms. I could quickly learn them tho.
Webmasters / Re: I Just Finished Coding A Mobile Social Network, Rate Me Or Become My Admin by ivcraig(m): 10:14am On Dec 23, 2015
Carry on Bro.
Programming / Re: Should I keep on writing codes and seeking admission at the same time? by ivcraig(m): 8:19pm On Nov 25, 2015
First things first. Study hard and tight for your jamb and post-utme. You can always become the best web developer the world has ever seen, but you won't always be at the appropriate age for university education. For your web developer skills to to be taken serious, you need a good degree, atleast in this part of the world.
I just graduated from uni, and now I'm back to learning advanced stuff in web development. In a way I can say 'I totally understand the way you are feeling'. You can email me on: victorighalo 'at' live.com for more advise. Take care.
Webmasters / Re: Mysql Dynamic Update by ivcraig(m): 6:43pm On Nov 23, 2015
Problem solved. I had to restart my local server where my app was running. I also had to use prepared statement.
Webmasters / Re: Mysql Dynamic Update by ivcraig(m): 11:41am On Nov 21, 2015
I've updated the script. Yes to your question, I have a query string in my address. The first MySQL query is matching a Where clause with '$artID' and the second is matching the variable '$ID'
Webmasters / Re: Mysql Dynamic Update by ivcraig(m): 9:14am On Nov 21, 2015
chars($_SERVER["PHP_SELF"]);?>">
<?php
$ID= $_GET['id'];
$query = "SELECT * FROM music WHERE musicID = $ID";
$result= mysqli_query($connection, $query);
$row = mysqli_fetch_array($result);
$artID = $row['IDartiste'];
$query2 = mysqli_query($connection,"SELECT music.*, artiste.* FROM music INNER JOIN artiste ON music.IDartiste=artiste.artisteID WHERE artiste.artisteID = $artID"wink;
$row2 = mysqli_fetch_array($query2);
?>
<!-- Artiste name field--> <div class="form-group">
<label for="topic" style="color: #55AAFF">Artiste name:</label>
<input type="text" class="form-control" name="artisteName" value="<?php echo $row2['artisteName'];?>" required autofocus>

<label for="sel1" style="color: #55AAFF">Artiste's continent:</label>
<select class="form-control" id="sel1" name="continent">
<option><?php echo $row2['continent'];?></option>
<option>African</option>
<option>English</option>
<option>European</option>
<option>Asian</option>
</select>
<label for="topic" style="color: #55AAFF">Artiste nationality:</label>
<input type="text" class="form-control" name="nationality" value="<?php echo $row2['nationality'];?>" required autofocus>
</div>

<!-- Article topic field--> <div class="form-group">
<label for="topic" style="color: #55AAFF">Music title:</label>
<input type="text" class="form-control" name="title" value="<?php echo $row['musicTitle'];?>" autofocus>
</div>

<!--Article textarea--> <div class="form-group">
<label for="body" style="color: #55AAFF">Content (text):</label>
<textarea name="article" class="form-control"><?php echo $row['musicArticle'];?>
</textarea>
</div>

<!-- Upload image start--> <div class="col-ms-6 col-xs-12" >
<div class="panel panel-default">
<div class="panel-heading" style="color: #55AAFF">Upload Image</div>
<div class="panel-body">
<iframe src="fileupload.php" width="100%" style="border:none"></iframe>
</div>
</div>
</div>
<!--Image link field--> <div class="form-group">
<label for="image_link" style="color: #55AAFF">Input image link: </label>
<input type="text" name="image" value="<?php echo $row2['artistePhoto'];?>" class="form-control"/>
</div>

<!-- Upload music start--> <div class="col-ms-6 col-xs-12" >
<div class="panel panel-default">
<div class="panel-heading" style="color: #55AAFF">Upload Music</div>
<div class="panel-body">
<iframe src="music_file_upload.php" width="100%" style="border:none"></iframe>
</div>
</div>
</div>

<!--Music link field--> <div class="form-group">
<label for="music_link" style="color: #55AAFF">Input music link: </label>
<input type="text" name="file" class="form-control" value="<?php echo $row['musicFile'];?>"/>
</div>
<center>....<button type="submit" class="btn btn-default" id="btnsubmit" name="btnsubmit" style="color: #55AAFF">Update</button>....</center>


<br />
</form>
</div>

<?php
if(isset($_GET['btnsubmit']
date_default_timezone_set('Africa/Lagos');

$setdate= date('Y-m-d-h-m-s');

$date= strftime($setdate);

$time= strftime('%X');

$artiste = $_GET["artisteName"];

$title = $_GET["title"];

$article = $_GET["article"];

$artisteImage = $_GET["image"];

$musicFile = $_GET["file"];

$artisteContinent = $_GET['continent'];

$nationality = $_GET["nationality"];

$sql_artiste = "UPDATE kingdomjoy.artiste SET artisteName = '$artiste', nationality = '$nationality' , continent = '$artisteContinent' WHERE artiste.artisteID='$artID'";
$artisteupdate = $connection->query($sql_artiste);
if ($artisteupdate === TRUE) {
echo"<script>swal('Success! artiste library updated')</script>";
} else {
echo "Error: " . die(mysqli_error($connection));
}
$sql_music = "UPDATE music SET musicTitle = '$title', musicFile = '$musicFile', musicPhoto = '$artisteImage', musicArticle = '$article', entryDate = '$date' WHERE musicID = $ID";
$musicupdate = $connection->query($sql_music);
if ($musicupdate === TRUE) {
echo"<script>swal('Success! music library updated')</script>";
} else {
echo "Error: " . die(mysqli_error($connection));
}
}
?>
</div>
Webmasters / Mysql Dynamic Update by ivcraig(m): 1:26am On Nov 21, 2015
I have a challenge with updating records in my mysql database. It only updates when I put in the row id manually but when I put the dynamic variable ($newid=&_get[`id:]) it doesn't work. Somehow the variable becomes undeclared at (if(isset($_get[`submit`] )) { //update code}.
Gurus, help me out. Thanks.
Politics / Re: What Is The Relationship Among Local Governments In Nigeria by ivcraig(m): 10:44pm On Aug 17, 2015
@firsteva.... You're too funny. Local governments in a romantic relationship. It sounds cool tho. You are right, I was given the subject to write on and it seems the level of cooperation among local governments is very low.
Politics / What Is The Relationship Among Local Governments In Nigeria by ivcraig(m): 3:54pm On Aug 17, 2015
what is the fiscal, economic, administrative and political relationship among local governments in nigeria
Romance / Re: huutfbkoyesghg by ivcraig(m): 11:39pm On Aug 09, 2015
Ask God to help through prayers and tell him to spend more time studying the bible, that's where the solution is.
Romance / Re: But Why Are Nigerian Girls Wicked Like This (PHOTOS PG 18+) by ivcraig(m): 11:21pm On Aug 09, 2015
Dull guy.....

1 Like

Webmasters / Re: Adding A Non-text Logo To A Site? by ivcraig(m): 10:58pm On Aug 09, 2015
Hi dear, if you cannot design the logo, you either pay someone to do it (me) or get a free logo design software (online and offline) to do it. If you don't know how to insert the image, then you can upload it to a photo storage site (photobucket) and place the link to the logo where the company name is.
NYSC / Re: Jamb Error In Admission Letter... BA Instead Of BSC by ivcraig(m): 7:38pm On Aug 04, 2015
Thanks guys. I would appreciate it if anyone here have had similar problem
NYSC / Jamb Error In Admission Letter... BA Instead Of BSC by ivcraig(m): 7:29pm On Aug 04, 2015
Hello, i am a final year student of Uniben. I just checked my jamb admission letter and realized that instead of a Bachelor in Science, I was given a Bachelor in Arts. My concern is if this will affect my clearance or NYSC posting
Webmasters / Re: To The Geeks In The House by ivcraig(m): 12:59am On Jun 11, 2015
I'll suggest using PHP. On the user's post form add a section for scheduling post-with a select button for schedule then date and time of post. Create columns for schedule(Enum), schedule date and time(Date and Time) in your database.
Thn on the page where u loop the user's post, make conditions- that checks if $shedule is ==1 and the date and time from ur db matches d current time before loop. Then and Elseif to loop all others date have $schedule ==0.

Hope this makes any sense.
Webmasters / Re: Thanks To These Skilled App And Web Developers With Good Human Relationship. by ivcraig(m): 2:42pm On Jun 04, 2015
thewebcraft:

What are you trying to achieve
I'm tring to sanitize my urls.... To remove those nasty "?id=66" and others. I eventually got it to work, but it doesn't modify the urls automatically.
Webmasters / Re: 8 Things I Wish I’d Known When I Started As A Web Developer by ivcraig(m): 2:38pm On Jun 04, 2015
WaffenSS:
Brazenly plagiarized by poster from the link you gave from here

http://www.sitepoint.com/8-things-wish-id-known-started-developer/

to impress the gullible.

this is shameful and unethical.
Didn't anyone see this? OP is a fraud.
Webmasters / Re: 8 Things I Wish I’d Known When I Started As A Web Developer by ivcraig(m): 2:37am On Jun 04, 2015
I'm trying to modify my urls using .htaccess rewrite directive on my local system(running wamp). The prob is that it's not working. All I get is a "500 Internal server error"
Webmasters / Re: Thanks To These Skilled App And Web Developers With Good Human Relationship. by ivcraig(m): 2:32am On Jun 04, 2015
Webcraft, abeg help me out. I'm trying to modify my urls using .htaccess rewrite directive on my local system(running wamp). The prob is that it's not working. All I get is a "500 Internal server error"
Technology Market / Re: Q10 Mboard Nided (and Parts 4 Sale) by ivcraig(m): 12:25am On Jun 04, 2015
Still requesting
Webmasters / Re: 8 Things I Wish I’d Known When I Started As A Web Developer by ivcraig(m): 12:23am On Jun 04, 2015
donbenedict:
lool bro, am doing just like the way u did. am currently in w3schools.com. can i hav your contact so you can be putting me through some things if i dont understand? please?
Cool... Keep it up.
Webmasters / Re: 8 Things I Wish I’d Known When I Started As A Web Developer by ivcraig(m): 9:31pm On Jun 03, 2015
infinitycane:
please I have interest on programming. i studied
marketing in The university. I am conversant with
PC and devices ( No Phobia ) for technology. I
want to start Learning how to programme and
develop softwares on my own due to the speed the
world is moving with ICT i need it in my discipline.
I dont know anything about programming language
( ie am a zero). How do I start?.
My brother. I started out like you, but today I make php programs for offline and online solutions. I spent hours nd nights studying and practicing. I failed so much at my attempts, but I kept strong nd refused to quit. My advise: if u wanna go into web dev, start reading books on html. Virtually, spend hours on w3schools. Goodluck.

1 Like

Webmasters / Re: Fiverr Script Develop Services by ivcraig(m): 7:22pm On Jun 01, 2015
An unresponsive web app at this time of the www?
Technology Market / Re: Sold!sold!!Buy A Blackberry Q10 Using Only Wifi Without GSM network for 10k by ivcraig(m): 11:46pm On May 28, 2015
I also have a white Q10 with every part perfect, but the panel. It has refused to boot after all d flashing attempts.
Technology Market / Q10 Mboard Nided (and Parts 4 Sale) by ivcraig(m): 11:59pm On May 27, 2015
I have a Q10 with a bad motherboard. If u have a working motherboard for sale indicate. Else if u need any of its parts indicate.
Programming / Re: Help How Can I Create This Type Of Tabled List by ivcraig(m): 1:52pm On May 27, 2015
DunMorris, if u snd me th data u want to insert, I can help u with it ina flash
Programming / Re: Help How Can I Create This Type Of Tabled List by ivcraig(m): 8:20pm On May 26, 2015
Piece of cake. Just do it with Bootstrap rows and columns, and save urself a lot of hassles. Even in a loop it'll work like magic.
Webmasters / Re: Free New E-book On HTML And CSS by ivcraig(m): 11:24pm On May 25, 2015
Good job @ OP. Ebooks on HTML and CSS are important for newbies. Even though there are tutorial websites, they are not still enough to acquire in-depth knowledge on the subject.
Newbies read up, the journey is far...
Technology Market / Re: Bold 5 Up For Grabs by ivcraig(m): 4:01am On May 16, 2015
08062239670
Technology Market / Re: Z10 Battery (brand New) For Sale by ivcraig(m): 4:00am On May 16, 2015
08062239670

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 11 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. 38
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.