2
Hello, one possible solution is you run an SQL to fetch the data you want, for that go to the SQL tab of phpmyadmin and run the following query:
SELECT * from nome_da_tabela WHERE content like '%texto_vai_aqui_%';
Replace the fields:
"tableName": by the name of the table from which the data you want to search are; "text_vai_here": text you want to search for;
For accentuation redifina the collation to utf8 if the case be.
SET NAMES 'utf8';
Voce wants to do this in phpmyadmin or in php?
– Luís Almeida
if it’s by php Voce you should first remove the accents from a $string. then you should calculate the length of that string.. use php strlen() .
– Luís Almeida
I’ll do it with php
– Atila Silva