Posts by Ju Oliveira • 121 points
2 posts
-
0
votes1
answer907
viewsA: How to search for the html input text?
You gotta have a input with id='search_input', for example, where you can enter the product name or ID. Then you have a table where are all the products and their respective ID’s, in this case I…
-
2
votes1
answer3313
viewsA: Remove accent in PHP (Ã)
Through function iconv(): $text = "GPA - GRUPO PÃO DE ACUCAR"; setlocale(LC_CTYPE, 'pt_BR'); // Defines para pt-br echo iconv('UTF-8', 'ASCII//TRANSLIT', $text); What will give: GPA - GRUPO PAO DE…
phpanswered Ju Oliveira 121