Posts by Heathz • 167 points
10 posts
-
0
votes1
answer178
viewsQ: Force a shell script to run in the terminal
The user will download the script from an internal website and run it. What I wanted was that after downloading the user take two clicks on the script and it runs and not open for editing. There is…
-
-1
votes1
answer344
viewsQ: Alternative to Phpmyadmin
Can anyone tell me a database manager where I can build more complex queries without having to enter the query? Just clicking where I want to make a SELECT for example? I need to do several queries…
-
2
votes1
answer3044
viewsQ: How to get the client IP in PHP?
I have researched several forums and even here but none of the solutions I saw brought me the right result. On all attempts I receive as ip ::1 Follow the code I’m using <?php if…
-
4
votes4
answers14424
viewsQ: Validate form before sending
I have an HTML page with an email submission form. I need to check on the same page if the fields were filled in or not at the moment the user clicks the Submit button. Apparently he is ignoring the…
-
0
votes2
answers63
viewsQ: PHP does not print output when equal to 0
All results are printed on the screen except when it is 0 and I need that number 0 be printed. If it is NULL it satisfies the condition below and correctly prints the hyphen.…
-
1
votes1
answer500
viewsQ: Fixed Action Button in Materializecss does not work
It just doesn’t work, the button even appears but none of the buttons work. I tried using materialize via CDN and local but there was no change. I believe there is no error in the code because after…
-
3
votes2
answers112
viewsQ: How to create XML tags from the column name of a mysql database?
How to create XML tags with the column name of a table coming from a myslq query? In the code I did I could only get the values of each cell of the table, but what I wanted was to create the tags…
-
2
votes1
answer1459
viewsQ: How to verify what an html/javascript page is loading?
How can I check what my browser is trying to load, even after the html/javascript page has already loaded "completely"? The page is: http://cerva.tk/index.html If you can do a test and see that it…
-
0
votes1
answer159
viewsQ: Sort multiple Object arrays by value
people have the following situation: var input1 = {preco:valor1.toFixed(3), tipo:name1}; var input2 = {preco:valor2.toFixed(3), tipo:name2}; var input3 = {preco:valor3.toFixed(3), tipo:name3}; var…
-
4
votes1
answer264
viewsQ: Manage variables with PHP session
I need to take the value of an input text to store it and use it on another page that opens automatically (popup) when the Send button of the form is pressed. He can do this, but what’s happening is…