first off, when they close the browser the session is ended, and the session is automatically ended after 30mins i think, without it being started again , there may be a way to change this in the php ini file.
something like this?
while($rows = mysql_fetch_array($sql))
{
if($i == 3){echo "<tr><td> </td></tr>"; }
echo $rows['visitors'];
$i++;
}
i think that should work, with some tweaking
I have this code
<input name="uname" type="text" class="Field1" id="uname" value="Username" onFocus=
"
if(this.value = 'Username')
{
this.value = '';
}
else
{
alert('cake');
}
"
onblur=
"
if(this.value = ' ')
{
this.value = 'Username';
}
"
/>
but this inserts Username into the field, even if you enter something, any help?
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.