Posts by Erich Casagrande • 9 points
2 posts
-
-1
votes5
answers1314
viewsA: PHP connection problem with Mysql
An example of POO connection, I used to use it I think it’s working ... class Db{ //Variáveis Privadas// private $user = 'root'; private $password = 'senha'; private $database = 'nomedobanco';…
-
1
votes2
answers330
viewsA: Line break problem and subster in php
See if this function would help in something: function limit_chars($string,$caracteres = 100) { $string = strip_tags($string); if (strlen($string) > $caracteres) { while…
phpanswered Erich Casagrande 9