Hello, there are 2 values derived from the database, when displayed in my plate, they are displayed cafe and bar: how can I replace these words with php?
I managed to replace only one value:
<?php function callback($bar) { return (str_replace("bar", "Бар", $bar)); } ob_start("callback"); php ob_end_flush(); ?> thank you in advance :)