error: "online Database INSERT Error"

Spawn
22 de Diciembre del 2005
Mi duda es la siguiente: Tengo una pagina web (www.histoadictos.com.ar) y cuando entra mucha gente a la vez (mas de 5) la pagina muestra este error: "online Database INSERT Error" Para que todos lo puedan ver, precionen F5 rapidamente y van a ver que el error aparece. No puedo solucionarlo. Hace mucho tiempo que estoy tratando de arreglarlo, y no puedo. al parecer se satura la base de datos, o es como si hiciese muchas consultas, no se... Por favor, si alguien sabe como arreglarlo postee la respuesta!!!!

Aca les dejo el codigo del index.php

Gracias a todos por su ayuda!!!

--------------

if ($clickpaginacion != 1)
{$desdedonde=0;}

$seconecto = conectador_db();
if (!$seconecto) //comprueba que la coneccion a la DB halla sido exitosa
{
echo "no se pudo conectar a la base de datos"; // mensaje de error
exit; //sale del programa
}

$seleccionarDB = mysql_select_db("xxxxxxxx");

$consulta = ("select * from historias order by id desc limit $desdedonde,10"); // Crea la consulta
$resultado = mysql_query($consulta); // Crea la consulta y la ejecuta.


while ($row = mysql_fetch_array($resultado))
{

if ($row[edad]== 0)
{
$edadamostrar = "No especifica";
}
else
{$edadamostrar = $row[edad];}

echo "<center>";
echo "<font face='Verdana'><table bgcolor='#FFFFDD' border='1' cellpadding='0' cellspacing='0' style='border-width:0; border-collapse: collapse' bordercolor='#111111' width='70%' id='AutoNumber1' height='8'>
<tr>
<td width='70%' style='border-left-color: #111111; border-left-width: 1; border-right-style: solid; border-right-width: 1; border-top-color: #111111; border-top-width: 1' height='19'>
<p align='right'><font color='#666666'>Historia numero: $row[id] </font></td>
<td width='2%' rowspan='4' style='border-left-style: none; border-left-width: medium; border-right: medium none #111111; border-top-style: none; border-top-width: medium; border-bottom-style: none; border-bottom-width: medium' background='imagenes/sombrin2.bmp'> </td>
</tr>
<tr>
<td width='59%' style='border-left-color: #111111; border-left-width: 1; border-right-style: solid; border-right-width: 1; border-top-style: none; border-top-width: medium; border-bottom-style:none; border-bottom-width:medium'>
<p align='center'><b>$row[titulo]</b></p></font>
</td>
</tr>
<tr>
<td width='59%' style='border-left: 1px solid #111111; border-right-style: solid; border-right-width: 1; border-top-style: none; border-top-width: medium; border-bottom-style: none; border-bottom-width: medium'><font size='2'>
$row[texto]</font></td>
</tr>
<tr>
<td width='70%' style='border-left: 1px solid #111111; border-right-style: solid; border-right-width: 1; border-top-style: solid; border-top-width: 1; border-bottom-style: solid; border-bottom-width: 1' height='18'>Nick: $row[nick] Edad: $edadamostrar Sexo: $row[sexo]</td>
</tr>
<tr>
<td width='68%' style='border-style: none; border-width: medium' background='imagenes/sombrin.bmp'> </td>
<td width='4%' style='border-left-style: none; border-left-width: medium; border-right: medium none #111111; border-top-style: none; border-top-width: medium; border-bottom-style: none; border-bottom-width: medium' background='imagenes/puntin.JPG' height='17'> </td>

</tr>

</table>
";
}
mysql_free_result($resultado);

/*

$carlos= mysql_query("select * from historias");
$num_historias = mysql_num_rows($carlos);

$cantpaginas = floor($num_historias / 10);

for ($j=1; $j <= $cantpaginas+1 ; $j++)
{
$numpag = $j;
$inicial = ($j-1)*10;
if ($j == ($desdedonde/10)+1)
{
echo $numpag;
}
else
{


echo "<a href='index.php?desdedonde=$inicial&clickpaginacion=1'>$numpag ";
}
}

mysql_free_result($carlos);
*/
$desconectar = mysql_close($seconecto);