Posts by Lincoln Luiz • 46 points
4 posts
-
0
votes1
answer113
viewsA: How do I add an animation while loading an Angular 4 request?
You can extend the Angular HTTP service to intercept your asynchronous calls by showing the user a loading screen or wait for an example. You can find an implementation in this gist…
-
0
votes1
answer54
viewsA: Add values in an array with javascript for update
You can use the input date attribute: <form action="#" v-on:submit.prevent="save(item.id)" method="POST"> foreach(configurations as config ){ <label for="{{conf.key}}"> {{ conf.alias…
-
0
votes1
answer666
viewsA: How to create a dynamic query in php
This happens by the search operator you are using, the same "=" makes a search for the exact content of the input, use the like with '%': campoTabela like '%$variavel%' This way the system will…
-
3
votes1
answer72
viewsQ: Upload does not work online, it appears on the screen part of the code of the Upload class
I created a project in PHP using the Codeigniter that uploads an image to the server. Locally it works perfectly, but online, hosted on a Locaweb server (Windows platform) shows an error, when I…