hi,
I include a file called bottom.php which goes at the bottom of all my pages
and looks like this:
<td> </td>
</tr>
</table>
</body>
</html>
<?php
if ($connection = @mysql_connect($host, $username, $password)){
@mysql_close($connection);
}
?>
I use this to make sure that I haven't left a connection open accidentally,
however I sometimes get an error message even though I am using the @
symbol:
Warning: mysql_close(): no MySQL-Link resource supplied in
/home/w/o/workmanagement/public_html/authenticate_user.php on line 51
How can this be?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php