Posts by Yuri Foxx • 63 points
8 posts
-
0
votes3
answers87
viewsQ: I cannot pass Methods as Parameter in PHP
I have the following code <?php namespace App\Http\Controllers; use Illuminate\Http\Request; class DatesController extends Controller { //Função que calcula o inicio e o fim da semana a partir do…
-
0
votes1
answer592
viewsQ: How do I log into the AUTH (Laravel) with data from a third-party API ?
I am developing a news application in Laravel 5 for a client, but it already has a system in operation, and wants me to use the existing database so that system users can log in to the news app and…
-
0
votes0
answers65
views -
0
votes1
answer1061
viewsA: How to get LAST_INSERT_ID() from a mysqli_multi_query() function with SET and INSERT?
So the solution I found was based on the answer from @Miguel and @lpaczech See the code ... $conn = Conexao::conectar(); $query = "SET TIME_ZONE = '-03:00';"; $conn->query($query) or die('Erro na…
-
1
votes1
answer169
viewsQ: How to avoid confusion of querys executed at the same time with Php and Mysql?
I have this php function (setBet) that registers the bets in my system based on Betfair, the fact is that I am looking to expand the business and probably some bettor will make a bet at the same…
-
0
votes1
answer1061
viewsQ: How to get LAST_INSERT_ID() from a mysqli_multi_query() function with SET and INSERT?
this is my 'Betting Signup Method' on my betting system. In this way, I register data in two tables, a call BET and another BET_MATCHES, the system is controlled by time, so in all entries I need to…
-
2
votes1
answer112
viewsQ: How to install OPENCV in PHP on a WAMP server?
I need the OPENCV image processing function in PHP, but I’m having trouble installing it in windows. how to proceed ?
-
1
votes0
answers284
viewsQ: How to recognize specific objects in an image with PHP?
Hello I am at this moment in Hackathon Google I/O and the challenge is to assemble a software that identifies the fruit of COCOA in a crop image, the question is : How will I do it using php ?…