Posts by Raphael Castro Martin • 75 points
6 posts
-
1
votes2
answers225
viewsA: How to delete input and bring back filter options
It’s a modal bootstrap? If it is, you just do the following $('#ModalLong').on('hidden.bs.modal', function () { $('#txtBusca').val(''); }) The event hidden.bs.modal is fired every time the modal is…
-
0
votes1
answer720
viewsQ: Pass array as parameter for web api in php with Angularjs
In my local environment I use PHP7 and developed Restful API for an application that uses Angujarjs. I needed to make a get request to the Api and pass an array as parameter and did so…
-
0
votes3
answers52
viewsA: Problem with select in PHP
Are you sure album_name is the correct name of the column in your database? As already said, from a var_dump or print_r to see exactly what is coming from your query.…
phpanswered Raphael Castro Martin 75 -
1
votes0
answers383
viewsQ: Angularjs $http.post taking too long
I have a web API made in php that accesses a Mysql database that has return in JSON and I am using Ionic + Angularjs to develop an App that will use this API. In my file services.js I created a…
-
4
votes1
answer139
viewsQ: Recover last row inserted in table with non-sequential primary key - Mysql
It is possible to know which was the last row inserted in a Mysql table where the primary key is not sequential? I have a table where the primary key consists of two columns that are FK, so they…
-
1
votes1
answer44
viewsQ: Regex to add a hierarchy level to all CSS rules
I don’t have much knowledge about regex (I don’t think anyone fully understands this) and would like to make a regular expression to change a CSS file by placing a hierarchy level (a class called…