Hey, gang. Thanks for all your help! I'm making a little progress, but I'm still not getting the results I'm hoping for.
Jonsjava, removing that period made it so that I'm getting my original output back. So that's great.
But, alas, I'm still not getting the improvement I'm hoping to get. Which is, when 'with2' has something in it, it gets listed after the value of 'with1' and a comma and space are inserted between them. Again, the relevant code, i think, is this:
if ($with2) {
echo ", <a href='{$row['with2Link']}' target='_blank'>{$row['with2']}</a>";
}
echo "</td>";
}
Could there be an issue in how I've defined the field in the mysql database? It's TEXT and it defaults to NULL.
iSE: I tried your code and I got no output from some reason.
For the big picture, below is the entire bit of code:
<?php
function displayEvents($row)
{
$day = substr($row['date'], 8, 2);
$day = $day - 0;
$month = substr($row['date'], 5, 2);
$year = substr($row['date'], 0, 4);
$dayw = date("D", mktime(0, 0, 0, $month, $day, $year));
$monthName = date("M", mktime(0, 0, 0, $month, $day, $year));
$hour = realHour($row['time']);
$minute = substr($row['time'], 3, 2);
$ampm = realAMPM($row['time']);
$showTime = $row['showTime'];
echo "<tr><td valign='top' align='right' class='date'>$monthName $day, $year</td>" .
"<td valign='top' align='right' class='dayw'>$dayw</td>" .
"<td valign='top' align='right' class='time'>";
if ($showTime) {
echo "$hour:$minute $ampm";
}
echo "</td>" .
"<td class='spacer'> </td>" .
nl2br("<td valign='top' class='location'>{$row['location']}</td>") .
"<td class='spacer'> </td>" .
nl2br("<td valign='top' class='venue'><a href='{$row['venueLink']}' target='_blank'>{$row['venue']}</a></td>") .
"<td class='spacer'> </td>" .
nl2br("<td valign='top' class='with'><a href='{$row['with1Link']}' target='_blank'>{$row['with1']}</a></td>");
if ($with2) {
echo ", <a href='{$row['with2Link']}' target='_blank'>{$row['with2']}</a>";
}
echo "</td>";
}
function displayActions($row)
{
echo "<td valign='top'><a href='admin.php?id={$row['id']}&action=edit'>edit</a></td>" .
"<td valign='top'><a href='admin.php?id={$row['id']}&action=delete'>delete</a></td></tr>" .
"<tr><td colspan='9' height='0px'></td></tr>";
}
?>