Posts by Ravin Mor • 25 points
9 posts
-
0
votes1
answer414
viewsA: Change the color of menu items by hovering the mouse
Add this function here in your css code: .tab-link:hover{ color: #ffffff; } You must specify the color to be transitioned within the Hover key. On the color turn white when clicked, I suggest you…
-
1
votes2
answers62
viewsA: How can I set my variable "u"?
It seems you did not include the class, consequently you did not urge the same. Try the following: <?php require('diretório/da/classe.php'); u = new Classe; ?> <html lang="pt-br" >…
-
1
votes1
answer122
viewsQ: {{ csrf_token }} Does not work
I am developing a form but csrf_token does not work: <form method="POST" action="/storeXML" class="form-inline"> <div class="container"> <input type="hidden" value="{{ csrf_token()…
-
-2
votes1
answer185
views -
0
votes1
answer319
viewsA: Namespace in PHP Does not work
I did some simulations and it worked, maybe the problem was at the time of instantiation, test something like this and show what returned: use app\lib\Teste as T; public $teste; $this->teste =…
-
0
votes1
answer59
viewsQ: Problems with Group By on Postgresql
I’m trying to make a view in a Postgre database: CREATE VIEW anuncio_points AS SELECT a.*, (CASE WHEN p.points is null THEN 0 ELSE sum(p.points) END) + u.points as points FROM anuncios as a LEFT…
-
-1
votes1
answer25
viewsQ: How to convert a Mysql view to Postgresql?
I’m making a migration from a Mysql database to Postgresql, but my view is not being accepted, I’ve been all over the internet looking for a way to modify it no longer worked, someone knows how it…
-
0
votes2
answers145
viewsQ: Problem with table data insertion via Aravel
I have a project in Laravel at the same time I learn to use the framework, I need to insert a certain value in a table field, for this there is a condition I put in the controller: public function…
-
-2
votes1
answer94
views