...no, non riguarda il mio problema!

Il mio è "prendere" le variabili, in .php, che ho ricavato dalla query nel mio database e fare delle operazioni in .html.

es:

miofile.php
<?
$query = "SELECT * FROM interesse";
$res=mysql_query($query);
if(mysql_num_rows($res) > 0) {
while ($riga = mysql_fetch_array($res, MYSQL_BOTH)){
$x=$riga[xx];
$y=$riga[yy];
//Chiamata a miofile.html passando le variabili x e y
?>

miofile.html

function Somma()

var num1=x*2;
var num2=y*3;

tot=num1+num2;
....
..


Ps scusate per l'esempio stupido

Spero di essere stato chiaro.

Grazie ancora