Okay, so I had a website that was perfectly functional, I haven't done any changes at all, but I know after my host updated their CP to V2, this happened:
PHP Code like this:
<?php
$result = mysql_query("SELECT * FROM tz_members ORDER BY id");
echo "<table border='0'>
<tr>
<th style='width: 15px'>ID</th>
<th style='width: 300px'>Username</th>
<th style='width: 100px'>Privileges</th>
<th style='width: 200px'>Join Date</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['id'] . "</td>";
echo "<td>" . $row['usr'] . "</td>";
echo "<td>" . $row['priv'] . "</td>";
echo "<td>" . $row['dt'] . "</td>";
echo "</tr>";
}
echo "</table>";
?>
</center>
<?php
endif;
?>
Now instead of properly outputting my member list, will show up as plain text. Here's the page that should display an example: http://www.cod5showtime.url.ph/members.html
Few PHP functions still work properly, any ideas why ? :/