hi my friend could u give me some link in order to learn more about ajax
and jquery.. cause i have this:::
<?php
$server="localhost";
$username="root";
$password="chrystopher";
$databasename="encuestasavandaro";
$con = mysql_connect($server,$username,$password) or die ('Error connecting
to server');
mysql_select_db($databasename,$con);
$qeryrango="select min(fecha) as minimo,max(fecha)as maximo from huesped;";
if (!mysql_query($qeryrango,$con))
{
die('Error: ' . mysql_error());
}else{
$sqlrango= mysql_query($qeryrango);
while ($row1 = mysql_fetch_row($sqlrango)){
$e1=$row1[0];
$e2=$row1[1];
}
echo "$e1 al $e2";
}
?>
this is my file named obenrango.php
and i have this div <div id="obtienefechas">i just want to put the result
of my obtenrango,php file with ajax whe the page is charged<div>
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en.