jsTree e jQuery

Pesquisar este blog

Contribua

Te ajudei? Quer retribuir? PIX de qualquer quantia.

Camisetas

Java

Caveira Azul
Cobras

Lobo (fluorescente)

 

Escorpião

https://pt.aliexpress.com/item/1005005725642774.html?spm=a2g0o.detail.1000014.38.10f9vlR1vlR1jD&gps-id=pcDetailBottomMoreOtherSeller&scm=1007.40050.354490.0&scm_id=1007.40050.354490.0&scm-url=1007.40050.354490.0&pvid=c33783fa-4c76-4d39-96af-a0b920914667&_t=gps-id:pcDetailBottomMoreOtherSeller,scm-url:1007.40050.354490.0,pvid:c33783fa-4c76-4d39-96af-a0b920914667,tpp_buckets:668%232846%238115%232000&pdp_npi=4%40dis%21BRL%2192.14%2131.33%21%21%21129.90%21%21%402101c67a16947104194886848e750e%2112000034130669595%21rec%21BR%21%21ABS


Lobo
https://pt.aliexpress.com/item/1005005649894586.html?spm=a2g0o.detail.1000014.6.10f9vlR1vlR1jD&gps-id=pcDetailBottomMoreOtherSeller&scm=1007.40050.354490.0&scm_id=1007.40050.354490.0&scm-url=1007.40050.354490.0&pvid=c33783fa-4c76-4d39-96af-a0b920914667&_t=gps-id:pcDetailBottomMoreOtherSeller,scm-url:1007.40050.354490.0,pvid:c33783fa-4c76-4d39-96af-a0b920914667,tpp_buckets:668%232846%238115%232000&pdp_npi=4%40dis%21BRL%2192.14%2131.33%21%21%21129.90%21%21%402101c67a16947104194886848e750e%2112000033883291687%21rec%21BR%21%21ABS

Águia

https://pt.aliexpress.com/item/1005005670003437.html?spm=a2g0o.detail.1000014.28.10f9vlR1vlR1jD&gps-id=pcDetailBottomMoreOtherSeller&scm=1007.40050.354490.0&scm_id=1007.40050.354490.0&scm-url=1007.40050.354490.0&pvid=c33783fa-4c76-4d39-96af-a0b920914667&_t=gps-id:pcDetailBottomMoreOtherSeller,scm-url:1007.40050.354490.0,pvid:c33783fa-4c76-4d39-96af-a0b920914667,tpp_buckets:668%232846%238115%232000&pdp_npi=4%40dis%21BRL%2158.04%218.07%21%21%2181.83%21%21%402101c67a16947104194886848e750e%2112000033959098835%21rec%21BR%21%21ABS

Pássaro

https://pt.aliexpress.com/item/1005005909578943.html?spm=a2g0o.detail.1000014.31.10f9vlR1vlR1jD&gps-id=pcDetailBottomMoreOtherSeller&scm=1007.40050.354490.0&scm_id=1007.40050.354490.0&scm-url=1007.40050.354490.0&pvid=c33783fa-4c76-4d39-96af-a0b920914667&_t=gps-id:pcDetailBottomMoreOtherSeller,scm-url:1007.40050.354490.0,pvid:c33783fa-4c76-4d39-96af-a0b920914667,tpp_buckets:668%232846%238115%232000&pdp_npi=4%40dis%21BRL%2160.52%219.19%21%21%2185.33%21%21%402101c67a16947104194886848e750e%2112000034805231056%21rec%21BR%21%21ABS


Cobra naja (de lado)

Anja

Chapeuzinho vermelho









Illegal immigrants heading to the US

Imigrantes ilegais em direção aos EUA
Trocar o nome de "imigrante ilegal" para "trabalhador sem documentos" não resolve o problema. Imigrantes legais é que merecem uma oportunidade. Imigrantes ilegais são apenas idiotas úteis que seguem supostos grupos bons que na verdade são maus e sua real intenção e desestabilizar os EUA. Eu que sou brasileiro enxergo fácil essa situação, mas infelizmente pessoas do próprio EUA não percebem isso ou percebem sim e são levianas e se aproveitam do desespero dessas pessoas.

Changing the name of "illegal immigrant" to "undocumented worker" does not solve the problem. Legal immigrants deserve an opportunity. Illegal immigrants are just useful idiots who follow supposedly good groups who are actually bad and their real intent and destabilize the US. I, who am Brazilian, can easily see this situation, but unfortunately people from the US do not realize it or they do, and they are frivolous and take advantage of the despair of these people.

PHP Include Não Funciona - Erro: Undefined variable

Algo comum é o seguinte, imagina um ambiente onde eu tenho
include/database.inc
login/login.php
index.php

Dentro do arquivo database.inc temos
$host_name = "localhost";
$user_name = "root";
$password = "your_password";
$database_name = "dblocal";
$connection_string = 'mysql:dbname=' . $database_name . ';host=' . $host_name;

Na página login.php eu possuo o código
include "../include/database.inc";
echo "$hostname" . "<br/>";

Então obtenho o erro
Notice: Undefined variable: host_name

Este erro acontece porque no arquivo database.inc não usamos <?php ?>
Então o include irá apenas escapar o texto do arquivo e não interpretar como instruções PHP.
O arquivo abaixo está correto.
<?php
$host_name = "localhost";
$user_name = "root";
$password = "ninjax";
$database_name = "dblocal";
$connection_string = 'mysql:dbname=' . $database_name . ';host=' . $host_name;
?>