₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,151 members, 8,420,571 topics. Date: Friday, 05 June 2026 at 02:35 AM

Toggle theme

Teampregar's Posts

Nairaland ForumTeampregar's ProfileTeampregar's Posts

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

ProgrammingRe: How Do I Customize This Html Tag <input Type="file"> by teampregar(op): 10:00pm On Jun 22, 2016
dhtml18:
I know I did that stuff on my Nairaland.com, but it has been long, I have forgotten the how. All I remember is that it is a very long something.
Does it involve using javscript's file upload API?
help me make a google search on it and post the answers here pls, right now am using freebasics(facebook's free internet service) and i cannot access google with it no megabyte sef..
ProgrammingRe: How Do I Customize This Html Tag <input Type="file"> by teampregar(op): 9:57pm On Jun 22, 2016
...
ProgrammingHow Do I Customize This Html Tag <input Type="file"> by teampregar(op): 9:50pm On Jun 22, 2016
At default when the file upload tag is used it shows
choose file or chose on its upload button, just like the on on Nairaland when u want to make a post. What i want to do is to change the choose text to something like 'upload now'.
I have tried this:
<input type='file' value='upload now'>
but its not working , i know this i acheivable as facebook have it on their web app..
Pls can anyone help..
cc: dhtml18 , guru01 , CodeHouse , scoutlebest4
ProgrammingRe: Php7: Null Coalescing Operator by teampregar(m): 12:06pm On Jun 22, 2016
dhtml18:
^^^You will, better start changing your concepts before the world overtakes you

here is my take on PHP 7, since the servers are all still using 5.3, 5.4, there is no point in using something that can only run on my localhost.
Even the latest version of Joomla and Co are still using php 5.x (usually not higher than 5.4), I ain't gonna be make a mistake i made sometime back.

I remember when PHP 5.0 first came out, I was one of the first few people to migrate. I did a fantastic app then, when i upload the stuff like this, na so wahala start only for me to find out the web hosts were still using 4.x, i migrate host na the same the same. Them tell me to buy vps or dedicated server and customize. Na so i jejely downgrade the app back to 4.x.
How much does a vps cost in naija and do i need to manage it by myself?
ProgrammingRe: Php7: Null Coalescing Operator by teampregar(m): 11:20am On Jun 22, 2016
So in php 7 there is no value to assign the variable to if the condition is false??
I like the former operator better.
ProgrammingRe: Want To Create A Music Playlist Using PHP, Ideas Pls by teampregar(m): 11:17am On Jun 22, 2016
cbrass:
Teamprega, I really appreciate your input but it still a bit confusing to me, codehouse method seems to be inline with what am thinking but still needs more clarification. If the users won't be using a desktop or tablet they will see a link they can click to listen
K, i advise what i posted to a php developer and someone who understands algorithm implementation , i would have written the entire codes of how it will work and give to u bt i am busy dats y i just gave an algorithm.
In general here i how my solution works:
STACK : PHP, JAVASCRIPT, HTML, DOM..
1. A visitor visits ur website(radio station that plays music)
2.Visitor clicks turn on radio button.
3.Onclick of turn on radio button javascript uses ajax to get any song on your server.
4.If a song was found it plays song, Else it goes to no song available error page.
5.Before javascript plays the song it sets an onafterplay HTML event attribute .
6. When onafterplay event occurs the process in number 3 is triggered again. So different songs continue to play until the Visitor presses the turn off radio station button..
ProgrammingRe: Studacom.ng - Online Hostel Booking + Roommate And Campus Tour Finder by teampregar(m): 9:57pm On Jun 21, 2016
Goodluck, on your mission, you know the service you are trying to offer now was what Evan Spiegiel(CEO and co-founder) And His Friend(Snapchat co-founder) tried to do at first bt it failed , guess what after that they worked on snapchat and it was a hit.. Who knows u and your team might be the next big thing in african techosphere
ProgrammingRe: Want To Create A Music Playlist Using PHP, Ideas Pls by teampregar(m): 9:29pm On Jun 21, 2016
CodeHouse, You be babanla or baba for the codes ohh..U too much.. Well OP, here is my suggestion , Your service will only work well if your market are users of desktop,tablet devices only, Because for smartphones na only default browser and google chrome dey support ajax without refreshin pages, the rest browsers like opera mini, uc web, dey refresh pages for ajax .. And most africans like dnt like using default browsers..

Then for the business logic, see how e go work..
Prerequiesties: You need to learn ajax and how to use the audio Html 5 node with DOM and javascript..
Code the media player, mediaGetter.js, and mediaController.php or whatever programming language and mediaReturner.php.
//Since u said songs go play randomly..
Here is my recipi and media player cycle :
START
-Onclick of start radio button: mediaGetter.js should use ajax to connect to mediaReturner.php with a parameter ?cursor=new
-mediaReturner.php should connect to mediaController.php
, get the value of the cursor parameter ,ie, $_GET(cursor),
assign a variable to the mediaControl function in mediaController.php file with the get value as an argument, ie, $song = mediaControl($_GET(cursor)); .
-on return of a value from mediaControl function ,
do this, header(" Content-Type : audio/mp3 "wink ;
echo $song;
-do the onreadystatechange ajax stuff then u, createElement(audio) ; den assign ajax.responsrText to the src attribute of the audio tag u created, then also assign the
function mediaGetter(//song name) to onafterplay event atrribute to d audio tag.
-Onafterplay: if this attribute is added to the audio tag when the music finishes playing it will recall the mediaGetter function to get another song.

Here is how mediaControl in mediaController.php function works:

function mediaControl($a)
if($a=='new')
//get ur music directory as a string
use list function to get list of files in your music directory
like this $musics = list('/musicdir/'); //this will return as an array.
return $musics(rand(0,count($musics));
note: the bracket after $musics should not be so i only used a normal bracket because i am typing with my phone.

if ($a != 'new')
use list function to get list of files in your music directory
like this $musics = list('/musicdir/'); //this will return as an array.
-Then use php pop function to remove the music that has been played from the array, ie, $musics = pop($a,$music) So that an the music that just finished playing will not repeat itself
-return $musics(rand(0,count($musics));

Here is how mediaReturner.php:
include 'mediaController.php';
$song = mediaControl($_GET(cursor));
if(!empty($song))
header('Content-Type:audio/mp3')
echo $song;
else
header('Location://No music available page).

That is all i can contribute cause , i just started writin this algorithm immediately i saw ur thread.. I culd have written the actual codes but i can insert some syntax with my mobile phone..

If do not knw hw to programme i sugest u show dis to a programmer he/she will understand and help u better..
Note: the algorithm may have some flaws, but u can add urs to it , what i gave is jst the basics.. Thank You.
ProgrammingRe: A Nairalander Designs A Software To Boast Entrepreneurship In Universities by teampregar(m): 3:46pm On Jun 21, 2016
I like ur idea but please make it work in a way that only students in a particular university can buy something from students in that university. For example, if i am in NDU i can only see things to buy by people who are in NDU. If not how can a student in NDU buy something from sm1 in unilag , who will transport the good for them?? is it ur company??. So i advise u to do it dat way
AgricultureRe: Tomato Jos: Mira Metha, Harvard Graduate Who Is A Tomato Farmer In Nigeria by teampregar(m): 1:38pm On Jun 21, 2016
Welcomme:
I swear I hav lost passion for education. To me, it is no longer useful. A secondary school eduction is okay so that one can read and write.
You are very right as far as one can read and write dats all, education does not only lies beyond d boundry of a university, u only go to university to specialize so u can get a job, but Nigerians will never have dis mindset, them take am sey person wey no go university nah illeterate.
AgricultureRe: Tomato Jos: Mira Metha, Harvard Graduate Who Is A Tomato Farmer In Nigeria by teampregar(m): 1:38pm On Jun 21, 2016
Welcomme:
I swear I hav lost passion for education. To me, it is no longer useful. A secondary school eduction is okay so that one can read and write.
You are very right as far as one can read and write dats all, education does not only lies beyond d boundry of a university, u only go to university to specialize so u can get a job, but Nigerians will never have dis mindset, them take am sey person a no go university nah illeterate.
PoliticsRe: Governor Obiano And His Wife, Son And Daughter (Photo) by teampregar(m): 3:15pm On Jun 17, 2016
shugacaneman:
Nairaland pls fix this issue. I have missed a lot because of this error. imagine what that big mouthed senator said about my state I will miss.
I bin tink sey na only me dey experience am 4 my opera min for android app oh, even somethings when i press back button e go carry me go the last two pages wey i visit, i tink the Nairaland Team , should update their service with a support for opera mini android browser
ProgrammingRe: Nigeria's Own Facebook(social Network) by teampregar(m): 9:56am On Jun 17, 2016
Why is it that Nigerians dont always respect intellectual property or copyright, My guy ur site is a pure facebook carbon copy, dis tins fit back fire you ohh, u stole all facebook web design and experience for mobile(i never check pc), i just showed ur websites sign in page to someone(covered the name) immediately d person saw it she said it was facebook. If facebook sees this they will say u are misleading users to ur site thinkin its the actual facebook.. Ehem wehn i visit ur help page i get a 404 Not Found Error , I also observed u have to be registered before u can view the terms of service page, how will someone register in something that he/she doesnt know d terms.
WebmastersRe: How To Send Emails From Wamp Server by teampregar(op): 10:40pm On Jun 16, 2016
designking:
The reason it throughs up that error is because the mail object needs a mail server to run. Wamp don't come with a mail server, you need to instal one before you can send emails locally.
Pls How do i install dis mail server and can u recommend a good one, plus do i also need to configure my php.ini file to work with d mail server?
PoliticsRe: Utorogu Liberation Movement, New Militant Group Emerges by teampregar(m): 8:35pm On Jun 16, 2016
Utorogun Liberation Movement People since na banner una dey use speak una mind, una 4 come put d banner 4 Nairaland na, remember it must be must be borderless, 318 pixels wide, 106 pixels tall, less than 30kb in size, and in the PNG or JPG format. SMH!!
ProgrammingRe: Is This Possible To Do In PHP AND MYSQL by teampregar(op): 7:21am On Jun 14, 2016
CodeHouse:
All you need to do is to explode the array, assuming your friends are stored in the table with a comma, exploding the array would generate a unique key starting from zero to the amount of friends in the table and also generate a value along side the unique key, the value is what you need, it contains the individual friends without a comma.. and that is what you need to run the other query... Note that youhave to sanitize, to avoid injection, what you have below should solve your problem...To get the post according to how they are posted, you can simply ORDER by post id
When did you declare the variable $user and why are you comparing its value with $value variable
ProgrammingRe: Is This Possible To Do In PHP AND MYSQL by teampregar(op): 7:03am On Jun 14, 2016
D34lw4p:
For your programming related questions post them at:www.nct.com.ng related and get almost instant reply from real G33ks
wat does nct mean
ProgrammingRe: Is This Possible To Do In PHP AND MYSQL by teampregar(op): 10:43pm On Jun 13, 2016
CodeHouse:
All you need to do is to explode the array, assuming your friends are stored in the table with a comma, exploding the array would generate a unique key starting from zero to the amount of friends in the table and also generate a value along side the unique key, the value is what you need, it contains the individual friends without a comma.. and that is what you need to run the other query... Note that youhave to sanitize, to avoid injection, what you have below should solve your problem...To get the post according to how they are posted, you can simply ORDER by post id
Thanks Alot , i will try it if u have any difficulty i will let you know, nice IDE tho, i bet u use a MAC OS
ProgrammingRe: Is This Possible To Do In PHP AND MYSQL by teampregar(op): 9:00pm On Jun 13, 2016
chainsaw11:
Of course, it's very much possible.
Waht i want to do is , for example, seun , bob and others makes a post then i follow seun , bob and others on twitter,
how do i query the database to show me posts of pple i follow based on the time they posted
ProgrammingIs This Possible To Do In PHP AND MYSQL by teampregar(op): 6:29pm On Jun 13, 2016
$array = array("seun", "bob"wink;

for($array as $a)
$query = "SELECT * FROM dbtable WHERE name= $a";
$result = mysqli_query($link,$query);
//Then the rest
My question is, is it possible to query a table against an array in PHP and still get your result,
in the above example i want to get rows of data from seun and bob
ProgrammingRe: How To Make A Database On Server? by teampregar(m): 6:23pm On Jun 13, 2016
If you are using a wampserver your servername is localhost, your username is root, ur password is empty, go to localhost/phpmyadmin/ then click on SQL tab then insert this "CREATE DATABASE yourDBname" i suggest you learn SQL tho
PoliticsRe: Lai Mohammed, Fashola And Fayemi At FEC Meeting Today by teampregar(m): 8:12am On Jun 09, 2016
Fashola to Fayemi:.This guy don convince nigerians sey bubu go treat im ear oh..
Fayemi be like: So You men sey dem blive dis guy.
Lie Mohammed: Omo no be today we start to lie, i was five months old
ProgrammingRe: Simple Algorithm Implementation by teampregar(m): 10:15am On Jun 07, 2016
Understanding a problem is the first principle of algorithm, we cannot solve the problem if we dont understand what we are solving, you should explain waht d algorithm does better, wheter it is a needle in haystack algorithm (used to iterate a loop for a match) or something else, explain better maybe i can give it a try
WebmastersRe: How To Send Emails From Wamp Server by teampregar(op): 10:30pm On Jun 06, 2016
talk2hb1:
I have a Good NEWS and a better NEWS for you undecided
The good news is most mail being sent from localhost will be blocked, the better news is You can install a mail server on yoyr local machine to send the mail. grin
I would also like to know how to install a mail server on my localhost, bt wat i really want to know is the reason php mail functiom ,mail(), shows error on my localhost is it because i did not configure my php.ini file rightly (i changed the mail server from localhost to stmp.google.com) or i can only use this function when i have a website
WebmastersHow To Send Emails From Wamp Server by teampregar(op): 3:56pm On Jun 06, 2016
I am using wamp server to develop a service an it requires sending emails , each time i use the mail function in php , it throws an error, please how can i configure my php.ini file to allow sending of emails throug localhost
Tech JobsRe: I Need Someone To Create Apps For My Website, It Urgent by teampregar(m): 10:35pm On Jun 05, 2016
Stop adding all facebooks features oh, your website name already includes book, if your service gets succesful tommorow and pose a competition to facebook, they might sue you that your are misleading users to your website.. trust me dem go slay, cause U.S.A government too powerful and naija must obey block your website.. Just think of ur own features and add or remove book from the domain name
Forum GamesRe: This Riddle Would Really Test Your Intelligence,can You Crack This by teampregar(m): 9:40pm On Jun 05, 2016
You are theresa's daughter, cause theresas daughter is your daughters mother(mom)
Art, Graphics & VideoRe: Proposed Nairaland Logo by teampregar(m): 5:09pm On Jun 04, 2016
I like ur ability to tell stories with ur graphic illustrations, it shows u know wat you are doing , nice work, u will work in a big time company one day , maybe facebook or better
ProgrammingCss:how To Make Height Of The Section Tag Automatic With Different Screen Sizes by teampregar(op): 7:25pm On May 27, 2016
Assuming i have this:
//HTML
<section>
Hello World
</section>

//CSS code on a blackberry short screen phone
section(
height:50px
)

How do i make the height to increase automatically incase someone with iphone 6 uses the website, so the section part will automatically fit the screen height of the iphone 6,pls how do i do this with CSS
ProgrammingRe: Help: PHP Mysqli Procedural API Problem With Prepare Functions by teampregar(op): 9:18am On May 25, 2016
spikesC:
http://php.net/manual/en/mysqli.prepare.php
Thanks, can u explain in anyway how prepared statements protects against SQL injections?
ProgrammingHelp: PHP Mysqli Procedural API Problem With Prepare Functions by teampregar(op): 1:25pm On May 24, 2016
Please how do i prepare a statement,
bind the parameters
and execute with php mysqli procedural..
Thanks..
I would like u guys to give examples..
ProgrammingRe: Simple Algorithm Challenge by teampregar(m): 6:14pm On May 19, 2016
larisoft:
My dear, your algorithm will be correct only if the number of 'hads' increases arithmetically after each correction. Unfortunately, it doesnt. the first no of 'had' occured once. The second twice. The third 10. The fourth 11. The fourth 38. Find the constant between these numbers and the algorithm is solved.

And there are great coders in Nigeria(though very few) . But algorithms are not just about rushing to your keyboard to type. Its about
1. Understanding the problem (so that you can solve it if you had all the time and no computer)
2. Understanding its domain (what other problems like this have already been solved?)
3. implementing a solution

Source (Skienna, the Algorithm Designs Manual).

The major obstacle in solving this is the first step. which is not even computer-science based - not whether we have great coders or not.

@Op, can you please explain the grammar rule here?
Thanks for ur advice i will check awt that Skienna Algorithm Design Stuff
Dnt blame me tho i am just a 16 year old programmer with 1 year programming experience

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