I have a PHP code and when viewing the page it cuts me off the text data.
echo '<div id="tabs-2">
<p><b>Ficha de Aptidão Médica:</b></p>
<p>Trabalhador (1) Validade:';
if ($exibe['MedicaValidade'] != '0000-00-00')
{
if (strtotime($exibe['MedicaValidade']) < time())
{
echo '<span style="color:red">'.$exibe['MedicaValidade'].'</span>';
echo 'Anexo :<a href="MostrarMedica.php?id='. $exibe['id'].'"> Ver PDF</a>';
} else {
echo $exibe['MedicaValidade'];
echo '<a href="MostrarMedica.php?id='.$exibe['id'].'"> Ver PDF</a></p>';
}
}
'<p>Trabalhador (2) Validade:';
if ($exibe['MedicaValidade2'] != '0000-00-00')
{
if (strtotime($exibe['MedicaValidade2']) < time())
{
echo '<span style="color:red">'.$exibe['MedicaValidade2'].'</span>';
echo '<a href="MostrarMedica2.php?id='. $exibe['id'].'"> Ver PDF</a>';
} else {
echo $exibe['MedicaValidade2'];
echo '<a href="MostrarMedica2.php?id='.$exibe['id'].'"> Ver PDF</a></p>';
}
}
It looks like this, disorganized.
I want to put:
Worker (1) Validity: 2014-30-05 Attachment: SEE
Worker (2) Validity: 2014-30-05 Annex: VER
And always show more if the date is different from 0000-00-00
.