Posts by Philipe Fernandes • 21 points
3 posts
-
0
votes1
answer194
viewsA: Selecting multiple fields from a table with a term in the query
Very simple Jardel. Before performing a result(), you can increment as you imagine. Example: $this->db->like('nomeCliente', $termo); $this->db->like('nomeMae', $outroTermo);…
-
0
votes1
answer69
viewsA: Problem with php Submit
The problem occurs due to lack of verification in the content of the client’s email. When you use the expression: "From: ". $_POST['clientName'] ." \n". See that in the image, on the left, the FROM…
-
2
votes2
answers3961
viewsA: How to do a preg_replace with various conditions and changes?
$texto = 'BLZ vou mudar o que tiver BR para B e o que tiver BL também. Além disso, quero mudar o que tiver PH para L, mas, será que pega com letras minúsculas? -> Teste: ph br bl'; echo…