Posts by Rafael Leme • 1 point
3 posts
-
0
votes3
answers75
viewsA: Shellscript does not run cd, calling sh via php
Try adding an echo to the script by staying that way. cd /home/teste4toquew5824 && echo $(pwd)
-
0
votes2
answers73
viewsA: How to break line in txt file generation for printing?
When printing a file, you need to use the command \n. For printing that is interpreted in the browser, the <br>.
-
0
votes1
answer59
viewsA: Error in autocomplete search field - PHP / AJAX
With the use of Ajax is not used Return. Replace the line: return json_encode($json); To: echo json_encode($json); For cases where json is returning null is due to accentuation of the element, it is…