I am working with FullCalendar. I keep events and database with this structure:
{
id: 1,
title: 'evento',
nombre: 'Juan',
start: '2018-09-05',
end: '2018-09-07'
},
{
id: 2,
title: 'evento',
nombre: 'Pepe',
start: '2018-09-05',
end: '2018-09-07'
}
and I receive them correctly in this way:
$('#calendario').fullCalendar({
events: 'http://192.168.1.162/carpeta/eventos.php'
)}
The problem comes to me that I want to show alone the events that I receive that have for example the name of 'Pepe'.
Any ideas to do it? Greetings and thanks