Posts by Mr_sang • 35 points
7 posts
-
0
votes0
answers417
viewsQ: Window.Location does not work
This Script aims to open a url by selecting value in comobox store the values in vars redir,redir2 and redir 3 function redirect(){ var obj = document.getElementById("cat"); // var obj2=…
javascriptasked Mr_sang 35 -
0
votes1
answer78
viewsQ: Problem: Divs move when clicking
I have a set of 4 divs with their own title, and when clicking on each one of them, the corresponding information is shown, when the page loads the divs are aligned with the margin between each of…
-
0
votes1
answer151
viewsA: Use stored value and redirect to chosen page
function redirect() { var obj = document.getElementById("cbx_localidad"); var redir =obj.options[obj.selectedIndex].text; window.location.href = redir; } It was as simple as this…
-
1
votes1
answer151
viewsQ: Use stored value and redirect to chosen page
I have a dropdown list that takes your options from a database mysql. The value is stored in a variable with the Js Script. The button returns to us the information selected in option 3. After…
-
1
votes0
answers37
viewsQ: Java Script error in phpMyadmin desgin mode
When I try to save the organization of a table structure, using the design mode in Myadmin, I get a "fatal java Script error". That is, whenever I open this tool, the tables appear all disorganized,…
phpmyadminasked Mr_sang 35 -
0
votes1
answer91
viewsQ: Error: Undefined index: Password in C and error Strict standards: Only variables should be passed by Reference
error referring to the same line of code : $stmt->bindParam(':Password', password_hash($_POST ['Password'], PASSWORD_BCRYPT)); Who Accumulate and record the information entered in the form with…
-
1
votes1
answer33
viewsQ: Explanation for the error in the following code
I started to solve the problems of the Euler project as a form of training in learning. If we list all the natural Numbers Below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of…