Do this:<br><br>$result = mysql_query(&quot; UPDATE userAccount SET loggedOn = &#39;N&#39; WHERE userID = &#39;$userID&#39; &quot;) or die(mysql_error());<br><br>This will promptly alert you if you have any database problems.
<br><br>I always do this by habit, as I&#39;m always getting database errors.<br><br><br><div><span class="gmail_quote">On 5/8/07, <b class="gmail_sendername">Philip Harper</b> &lt;<a href="mailto:ph004h7245@blueyonder.co.uk">
ph004h7245@blueyonder.co.uk</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi,<br><br>Thanks for all the suggestions....but I&#39;ve tried most of them before!
<br><br>The dbcon.php file simply contains the standard PHP code I use to create<br>a connection to the MySQL database.<br><br>I think it is just a case of something working slightly different on the<br>sourceforge server, as any PHP developer knows, PHP has so many
<br>different options and compilation options it is sometimes tricky to find<br>which one is causing the problem on a different server that you are<br>installing your system on, and it&#39;s often a case of just trying to make
<br>your scripts as portable as possible.&nbsp;&nbsp;Maybe I&#39;ll raise a support request.<br><br>James Dalley wrote:<br>&gt; &gt; Date: Thu, 3 May 2007 16:42:49 +0100<br>&gt; &gt; From: <a href="mailto:ph004h7245@blueyonder.co.uk">
ph004h7245@blueyonder.co.uk</a><br>&gt; &gt; To: <a href="mailto:wolves@mailman.lug.org.uk">wolves@mailman.lug.org.uk</a><br>&gt; &gt; Subject: [Wolves] Any PHP/MySQL experts who can help me?<br>&gt; &gt;<br>&gt; &gt; Hi<br>
&gt; &gt;<br>&gt; &gt; I have an interesting problem, well, I guess not interesting as much as<br>&gt; &gt; annoying the hell out of me at the moment!<br>&gt; &gt;<br>&gt; &gt; I have a script that logs a user out of my system:-
<br>&gt; &gt;<br>&gt; &gt; &lt;?php<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; session_start();<br>&gt; &gt;<br>&gt; &gt; include &#39;dbcon.php&#39;;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; /* Change database entry to say that the user is no longer logged in */
<br>&gt; &gt;<br>&gt; &gt; $userID = $_SESSION[&#39;user&#39;];<br>&gt; &gt;<br>&gt; &gt; $result = mysql_query(&quot; UPDATE userAccount SET loggedOn = &#39;N&#39; WHERE<br>&gt; &gt; userID = &#39;$userID&#39; &quot;);<br>
&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; /* destroy session */<br>&gt; &gt; session_destroy();<br>&gt; &gt;<br>&gt; &gt; mysql_close( $link );<br>&gt; &gt;<br>&gt; &gt; header(&quot;Location: logout.html&quot;);<br>&gt; &gt;<br>
&gt; &gt; ?&gt;<br>&gt; &gt;<br>&gt; &gt; Now, on my server this works fine, I check the userAccount database<br>&gt; &gt; table, and the loggedOn field is correctly set to &quot;N&quot; as it should<br>&gt; be to<br>&gt; &gt; say the user has logged off, but for some reason, the test system I&#39;m
<br>&gt; &gt; running on sourceforge dosen&#39;t do this, the user logs of, but there<br>&gt; &gt; entry is still loggedOn = &quot;Y&quot;.<br>&gt; &gt;<br>&gt; &gt; On my own server where the script works I&#39;m running Ubuntu Dapper 
6.06<br>&gt; &gt; LTS installed with the LAMP option, so it auto installs PHP5 and MYSQL5.<br>&gt; &gt;<br>&gt; &gt; The even stranger thing is that the login script, which uses the exact<br>&gt; &gt; same PHP/MySQL code as above, but in that case to set loggedOn = &quot;Y&quot;
<br>&gt; &gt; works perfectly on both my server and sourceforge!<br>&gt; &gt;<br>&gt; &gt; I&#39;m stumped, give me more coffee......<br>&gt; &gt;<br>&gt;<br>&gt;<br>&gt; PS Silly Question but, Have you tried mysql_close then destoy??
<br>&gt;<br>&gt; ------------------------------------------------------------------------<br>&gt; Be one of the first to try Windows Live Mail. Windows Live Mail.<br>&gt; &lt;<a href="http://ideas.live.co.uk/ProgramPage.aspx?versionId=5d21c51a-b161-4314-9b0e-4911fb2b2e6d&amp;pageId=0">
http://ideas.live.co.uk/ProgramPage.aspx?versionId=5d21c51a-b161-4314-9b0e-4911fb2b2e6d&amp;pageId=0</a>&gt;<br>&gt;<br>&gt; ------------------------------------------------------------------------<br>&gt;<br>&gt; _______________________________________________
<br>&gt; Wolves LUG mailing list<br>&gt; Homepage: <a href="http://www.wolveslug.org.uk/">http://www.wolveslug.org.uk/</a><br>&gt; Mailing list: <a href="mailto:Wolves@mailman.lug.org.uk">Wolves@mailman.lug.org.uk</a><br>
&gt; Mailing list home: <a href="https://mailman.lug.org.uk/mailman/listinfo/wolves">https://mailman.lug.org.uk/mailman/listinfo/wolves</a><br><br><br><br>_______________________________________________<br>Wolves LUG mailing list
<br>Homepage: <a href="http://www.wolveslug.org.uk/">http://www.wolveslug.org.uk/</a><br>Mailing list: <a href="mailto:Wolves@mailman.lug.org.uk">Wolves@mailman.lug.org.uk</a><br>Mailing list home: <a href="https://mailman.lug.org.uk/mailman/listinfo/wolves">
https://mailman.lug.org.uk/mailman/listinfo/wolves</a><br></blockquote></div><br>