Posts by Evandir Baldanza • 26 points
5 posts
-
1
votes1
answer593
viewsQ: CURL PHP request for a WEB Service
Good morning to you all. Guys, I’m having a problem communicating with the web service of a third-party company here where I work. Explaining above, I need to send a report of transactions with…
-
-1
votes1
answer112
viewsA: Update of DIV
If you have two tabs open for the same system and made an Insert in one of them. You can’t control the other open tab, just the one with the focus. What could do if this was the case is to put an…
-
0
votes1
answer101
viewsA: Insert Script in PHP Database
You cannot put the php function call in the form action. It does not recognize. The correct thing is to submit your form to the html page itself and check if it was sent post. If so, call the…
-
0
votes1
answer74
viewsA: Redirect a url into a folder without displaying name
Add the following lines to your . htaccess : RewriteEngine on RewriteCond %{REQUEST_URI} !projeto/view/ RewriteRule (.*) /../$1 [L]
-
0
votes1
answer725
viewsA: Grab clicked client id and write to a variable to recover in a modal
You can place a date attribute or even id on your link by receiving the id variable and pick it up by javascript and assign it to some input field of your modal. Ex: PHP echo '<a href="#pagina"…