Posts by Lucas Augusto • 133 points
8 posts
-
0
votes4
answers248
viewsA: Error when centralizing ul in div
Good Afternoon, I believe in two points: First - Your CSS already exists text-align: center No need to insert it again in <li class='listaTopoLi' style='text-align:center; And I believe it is…
-
1
votes2
answers1860
viewsQ: Remove array element
Good afternoon, How can I remove only one specific element of the array $produto = Array([0] => Array("ID" => "12", "Nome" => "Produto1", "Valor" => "45,50") [1] => Array("ID" =>…
phpasked Lucas Augusto 133 -
0
votes1
answer97
viewsQ: Separate Jquerys and Css
I own a index.php which uses the following JQuery and CSS: <script src="http://code.jquery.com/jquery-1.12.1.min.js"></script> <script…
-
0
votes1
answer69
viewsQ: Manipulation of JSON
I have the following code: $Json = array(); foreach ($Dados as $ln){ $Json[label] = $ln['NOME']; $Json[value] = $ln['EMAIL']; } echo json_encode($Json); With this I have the following return:…
-
1
votes1
answer333
viewsQ: Save value from a select in Session
Good morning, I have a select where I bring the categories in my php site, after selecting the category I needed to redeem the value field to use it in the select of the sub-category. I believe that…
-
-2
votes2
answers94
viewsA: Problems with the footer div
You’ve tried leaving css like this ? .footer { position:absolute; With this, your footer will no longer be changed by the browser zoom.
-
2
votes1
answer47
viewsA: How should the data of a table be selected through junctions?
The two examples are correct, the performance is the same as well as the returned data will be the same. The difference that the former can be used in any syntax. Whereas Join varies from one…
-
5
votes1
answer8462
viewsA: How to configure an existing field for auto-increment?
To change just use the following command: For SQL Server: ALTER TABLE <TABELA> ALTER COLUMN <Nome_Coluna> Identity (1,1) // caso for sql server For Mysql: ALTER TABLE <TABELA>…