Posts by Henrique Santiago • 851 points
54 posts
-
3
votes1
answer5856
viewsA: Doubts in Arvore Binaria in C - Printing order, pre-order and post-order
1st Doubt - That’s right, it’ll be the two children. 2nd doubt - **pRaiz` will be the Node you create to be the ROOT. As it is a pointer that will POINT to another pointer, which is the root of the…
canswered Henrique Santiago 851 -
2
votes1
answer262
viewsA: GET 500 (Internal error) PHP
When accessing variables, you no longer need to use the dollar sign $. public function setValor(){ $this->v = "valor"; $this->v2 = "valor2"; $this->v3 = "valor3"; }…
-
2
votes2
answers158
viewsA: Accent error with xmlhttp.open (or in PHP) using Angujarjs / Ionic
Check the database enconding, it has to be the same as the page. If in the database you have utf8, you can use the php utf8_encode function().
-
1
votes1
answer151
viewsA: After registration (in PDO), direct the page to index.html
Do the following: Check the flow of your application, maybe they are not loading because the flow when being requested the page, it is not going through some script that she was supposed to have…