non sapevo se scrivere qui.. o nella sezione apache...
io in locale ho installato apache mysql e php... e funziona tutto correttamente.. però non capisco come mai jquery non mi funziona più..

ce qualche impostazione particoalare da fare? non penso io..

queste sono le due paginette che sto testando

Codice PHP:
<?php

session_start
();
####INCLUDE####

include ('include/connessione.php');
include (
'include/parametri.php');
include (
'include/funzioni.php');
include (
'include/traduzione.php');



####STATO DEL SITO####

$sql "SELECT * FROM $db_utenti WHERE nickname = '$nickname_ses' AND password = '$password_ses'";
$query = @mysql_query("$sql");
$row mysql_fetch_array($query);

echo 
bbcode($row[descrizione]);

echo 
"


"
;

?>
e

Codice PHP:
<html
<
head
 
<
script src="include/js/jquery-1.3.2.min.js"></script> 
 
<script>
 $(document).ready(function() {
      $("#responsecontainer").load("http://localhost/cms/test_bbcode.php");
   var refreshId = setInterval(function() {
      $("#responsecontainer").load('http://localhost/cms/test_bbcode.php');
   }, 2000);
});
</script>
</head>
<body>
 
<div id="responsecontainer">
</div>
</body> 
in locale non va ma nel sito si.. -__- come mai?