Posts by Júlio Rossato • 99 points
8 posts
-
0
votes4
answers674
viewsA: code of the PHP page appearing when clicking the Submit button of the form
Good day, There may be several reasons why this is happening among them : Failed to start PHP server File renamed wrong ex: "index.php.html" looks like a joke but happens a lot. Special character in…
-
1
votes1
answer69
viewsA: How to create programming logic to disable a button after an action?
Good afternoon, Make a query in the bank, and check if there is an amendment if the return is null you print in the disabled word inside the button. <button <?php echo (!empty($result)) ?:…
-
1
votes2
answers229
viewsA: Read XML with equal PHP nodes
Good night, Try it here: foreach($xml->Listings as $registro): echo 'Título: ' . $registro->Listing->Title . '<br>'; foreach($registro->Listing->Media as $item): $loop =…
-
0
votes1
answer39
viewsA: Wordpress, Widget Contact Info & Map (jetpack)
Good night, Have you looked at the browser console and apache log to see if it is signaling something ? It is a little complicated and help without seeing the code, more than one F12 and look at the…
-
0
votes1
answer34
viewsA: I need ideas with checbox form
Good night buddy, If you publish part of the code it would be easier to help you. The logic would be something like: $resul; //resultado do banco de dados $opcao; // s ou n $_POST foreach($result as…
-
1
votes2
answers45
viewsA: Is there any way to pass the value of a $_SESSION to a link?
You can print your Session and concatenate as you see fit. ex print: <?php echo $_SESSION['id']; ?> ex concatenate: www.site.com/id=<?php echo $_SESSION['id']; ?> or <?php echo…
-
2
votes3
answers108
viewsA: I need to break the line
Good afternoon, Using the percentage standard and not the pixel standard, because this way it will fit the browser. Try something like that: <div id="pai" style="widht:100%"> <div…
-
1
votes3
answers1597
viewsA: How to open a. php file that is in a subdirectory?
I don’t know if I understand much more we go there. To open the link of the directory [posts] you use < a href="/post/nome_arquivo.php"> arquivo da pasta post < /a > If you do not want…