Posts by Franco Pan • 64 points
4 posts
-
-1
votes1
answer123
viewsA: How to give Count up to a limited value, "countar up to 90 on a table that has 100"
It would be good for you to specify the database you are working on. Usually you need to specify an alias when doing a subquery. Another thing, replace '1' with a '*' or a column name. select…
-
2
votes1
answer35
viewsA: Rest API does not receive anything from another App other than my own
Conduct a survey on implementing the Uth. This protocol allows authenticating external applications according to user permissions.
-
3
votes2
answers734
viewsA: How to remove "disabled" attribute from the parent select option?
Disabled doesn’t really send the data to the request. Use 'readonly'. To disable from selecting other options, it is necessary to make readonly to select (using parent()). Example:…
-
0
votes1
answer277
viewsA: Notification when Open Chrome
Hello, there is an API for browsers to display notifications. These notifications are created via javascript. Below contains examples of using the API. if (("Notification" in window)) { //Verifica…