Posts by rponk • 53 points
7 posts
-
0
votes1
answer31
viewsQ: How to search for data in MYSQL using Regular Expressions?
It is necessary to compare data from the MYSQL database, but the data to be compared is not extremely equal. MYSQL LIKE does not work in this case because there are some variables in this query. To…
-
0
votes0
answers24
viewsQ: What is the best way to display an item rating without overloading the system?
Hello The site I am currently working on was developed using Laravel, using MYSQL as the database. The base currently has 500,000 registered players. Each player has a score. Currently the system…
-
0
votes3
answers115
viewsA: voting system
This happens because you are calling in your CSS a "content" equivalent to the coffee icon. You have two alternatives. 1) To replace: content: ' f005'; By the content of the correct icon: content:…
-
0
votes0
answers71
viewsQ: How to show a team’s rating using php?
I am working with a ranking with more than 500 teams, using php. The ranking changes daily, to every game of any team that appears on that basis. The question is, how to display the classification…
-
4
votes1
answer63
viewsQ: Inform or not the View inside the php controller?
I created a framework for own use, a little to understand how a Fw works, but turned into a basic working tool. I know that many will say that one should not try to reinvent the wheel. But I’m not…
-
1
votes0
answers67
viewsQ: What’s the downside of not using a php route file?
In several frameworks it is necessary to set a route in the system, as in the example below. Route::get('MeuController/MinhaAction', function ($name) { // }) However, I would like to know what…
-
0
votes3
answers81
viewsA: Working with date and deadline checks
Well, assuming you get the date of a database and do this check in php, you can use the class Datetime->diff(). Even that has been dealt with here. I tried to use the same variable names of your…