Posts by Edgar R. Sandi • 66 points
3 posts
-
4
votes1
answer56
viewsA: How to download a BD from the console?
Use the Mysqldump: mysqldump [dbname] -h [host] -u [user] -p > [endereço onde salvar o dump] press enter enter the password and ready
-
1
votes3
answers799
viewsA: Delete Item Array
What is happening is that if it does not find returns false to the variable $nota. In the if when you make a mathematical comparison it converts to int. So if if( $nota >= 0 ) is the same as 0…
-
0
votes4
answers733
viewsA: How to check if there is only one position in the array element?
Why don’t you do something like: while($w_registro = pg_fetch_object($w_queryresult)) { $w_patr = trim($w_registro->tx_num_patr); $w_seri = trim($w_registro->tx_num_seri); if (!empty($w_patr))…