Posts by Fabrício Patrocinio • 91 points
7 posts
-
1
votes6
answers12128
viewsA: Error typing GIT PUSH
Actually just follow the step by step after creating the repository on github. Then you use: git add remote "link do repositorio" Then you use the: git init git add * git commit -m "Comentario" and…
-
1
votes1
answer27
viewsA: how to save image name to DB using Codeigniter 4
I got it! In fact I had to take the objects of the img before playing in the Insert, because it already takes all the data and could not lead to var $newname, this the solution:…
-
1
votes1
answer27
viewsQ: how to save image name to DB using Codeigniter 4
The only question here is to save the name I catch with var $newname. I can get the name already modified and even print on the screen, but when I step on set() to save in DB nothing happens. The…
-
-2
votes1
answer64
viewsQ: Double chained list in C using remove function
Could someone help me because I’m not getting the function of remove, I did everything right, but I’m not succeeding, need not give me the code, just could guide me what is wrong and how to solve. I…
-
0
votes5
answers6853
viewsA: Convert Date field data to Mysql month
No need to touch SQL, the secret is to keep the data pure. See the example in PHP, create only an array and manually play the months in string starting from 1. $query = "SELECT Year(date) as ano,…
-
5
votes2
answers2279
viewsQ: How to get only the date month with PHP from the database
Well the date is in the format ( 2020-02-10 17:04:01 ) So I just want to take the month or day separately, the data is saved in the data Anco, I can get the whole date, but I wanted to take…
-
1
votes2
answers77
viewsQ: How to call class by class, just picking the one the mouse is on top of, without picking up the others simultaneously?
I want to pass the mouse over each class and call your form without calling the form of all others. Can anyone help me? In my case I will have several name class lis-fil and every time I hover over…