Posts by Alysson • 122 points
10 posts
-
1
votes2
answers501
viewsQ: PHP function on an html page
Because it doesn’t work: </head> <body> <?php include_once '../model/Cliente.php'; include_once '../DAO/Conexao.php'; $conexao = new Conexao(); $cliente = new Cliente(); $nome = "";…
-
2
votes3
answers124
viewsA: Differences xml lines Android (Eclipse)
Android-Studio is upgraded to the best performance of Android apps. According to Google Developer, Android Studio should be allowed @+id/ and then put the desired name of the component, example -…
-
1
votes1
answer901
viewsQ: PHP - Send to another client id page when you click on a cell
I have a list of clients each in a cell. I want, by clicking on the cell, send to another page the id of the selected client, safely. Without showing the id in the link. Generating the tables:…
-
0
votes1
answer102
viewsQ: PHP - print_r in xml is bringing Class name
I have a class called Cliente.php connecting to the web service and have another call Requisição.php that generates the XML request and sends to the Cliente.php. The problem is that the answer I get…
-
3
votes1
answer402
viewsQ: Variable of type Object within a class
I don’t know if it’s possible, but I’d like to do as I do in java the following code in PHP in java public class Not_req { private Cabacelho_Req cab; private Requisicao req; public Cabacelho_Req…
-
0
votes1
answer265
viewsA: Traverse XML array in PHP
I did that, and it worked. $tuas_tags = $xml->sis->cont->Clis->Cli[0]->IDcli; foreach ( $tuas_tags as $tua_tag ) { echo "<br>".$tua_tag->IDcli; } Thank you who tried.…
-
0
votes1
answer265
viewsQ: Traverse XML array in PHP
Hello. I have this path that is a position of a array of an XML response, and I’m taking the IDcli. I can’t make a foreach along this array and show the IDcli. $xml = simplexml_load_string($obj);…
-
1
votes1
answer178
viewsQ: Pure XML in PHP
I am making a request to a web service (done in Delphi), by PHP sending an XML and receiving a reply. What I want is to be able to show XML exactly as it is. Code I use: $getData is the request XML…
-
0
votes1
answer80
viewsA: Onscrolllistener does not work Onitemclicklistener
I managed to solve my problem. The problem was, that when I did the search it tried to add again in the list, because the list soon reached the end because the last item in the list was visible…
-
0
votes1
answer80
viewsQ: Onscrolllistener does not work Onitemclicklistener
Onitemclicklistener does not work when clicking on a survey client. Hello. I have a screen that is a Listactivity, when I open it, it brings customers perfectly from the bank, running the…