Tengo una duda sobre como concatenar o agregar una variable con un string dentro de un define().
tengo este codigo
Código PHP:
if ($_GET['view'] == $titulo) {
define('TITULO_WEB', 'Mi web | .$titulo')
}else{
define('TITULO_WEB','Mi web');
}
o tiene alguna mejor solución?