Posts by Charlie Sheen • 61 points
6 posts
-
0
votes1
answer73
viewsA: Return an api value
The problem is that you are passing an object inside the Sponse res.json( {msg: "Top: ", rankYo} ) Simply change your current answer to res.json(`Top: ${rankYo}`)…
-
0
votes2
answers137
viewsQ: Is there a framework in php that is similar to frontend frameworks?
First of all, obviously I understand the difference between the Back End and Front End, but my question is in the sense that the front end frameworks, comes with their components ready, example if I…
-
0
votes1
answer77
viewsQ: How to update the PDO database after running a Javascript (Countdown) function
I’m making a Countdown Javascript, and would like when the count was == 0, execute a update in the database where would add a value <script type="text/javascript"> var count=new Number(); var…
-
4
votes1
answer214
viewsQ: How can I detect if the user of my site has my extension installed in Chrome/Moziilla
Hello, I need to detect if users who access my site already have my installed extension, some site functions depend on this extension. If the user has the extension installed, they will be able to…
-
1
votes4
answers2314
viewsQ: How do I insert the value of a variable into an HTML attribute using pure Javascript
I’m trying to insert a value I’m taking from the url inside the HTML attribute, as follows: I’ve done this job function urlId() {…
-
0
votes1
answer182
viewsQ: How do I redirect and send url get value to another page using Javascript?
I’m picking up an URL item with this code : function GetQueryString(a) { a = a || window.location.search.substr(1).split('&').concat(window.location.hash.substr(1).split("&")); if (typeof a…