The title is very mixed but I do not know what I want to do.
Within a table with data coming from the database I have the following structure:
echo '<tr><td> '.$row["data"].'</td></tr>';
So far so good, the various dates appear in the table. Now I need to use the value coming from the date to use another code eg:
$dataextenco = '.$row["data"].';
// Transformar a data que vem do BD em dia da semana
// Tabela
echo '<tr><td> '.$row["data"].'</td></tr>';
Sorry for being too cluttered, but I can not explain it better and I do not have the complete code here.