Posts by Doug • 75 points
5 posts
-
0
votes1
answer87
viewsQ: Picking last value of each ID according to highest end year
I have the following query: select f.id_user as user, f.id_tempo, t.ano_inicial, t.ano_final from fato as f inner join tempo as t where f.id_tempo = t.id_tempo; Which returns me the following table:…
-
1
votes0
answers336
viewsQ: Codeigniter + Progressbar
Hello. I’m trying to develop a file upload system which when doing the post generates and loads a progressbar according to the course of my file unzip script, read and store in the bank. It’s the…
-
5
votes1
answer1621
viewsQ: PHP + Google API Geocode
Follow the method code: function GetGeoCode($address) { $geo= array(); $geocode = file_get_html('http://maps.google.com/maps/api/geocode/json?address=' . $address . '&sensor=false'); $output =…
-
0
votes0
answers90
viewsQ: Curl PHP + Google Speech
I’m trying to work out a php algorithm to get a particular file. flac and , through google Speech return the text generated through the same. Follow the code below: $filename="good-morning-google";…
-
1
votes2
answers76
viewsQ: Given the given String below, how do I define this division?
I have the following string: "User Data: JOAQUIM DE OIVEIRA, NASCIDO IN 2010, GRADUATED IN: LAW, HOBBIE: FOOTBALL" How do I give one explode in that string only by validating the first sign of…