SurferTim:
Woody1994:
I have to do it with html and javascript. so i cant do anything with php 
What do you plan on doing with the data on the server? You will need some kind of server side script to read/process/save/etc the data (sent by the client) on the server.
I'm planning on making a graph with it. I want to do some kind of dataloggin. I already have the code for the graph. I found it somewhere.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<script><endnote><head>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<!--
/**
* o------------------------------------------------------------------------------o
* | This file is part of the RGraph package - you can learn more at: |
* | |
* | http://www.rgraph.net |
* | |
* | This package is licensed under the RGraph license. For all kinds of business |
* | purposes there is a small one-time licensing fee to pay and for non |
* | commercial purposes it is free to use. You can read the full license here: |
* | |
* | http://www.rgraph.net/LICENSE.txt |
* o------------------------------------------------------------------------------o
*/
-->
<title>An example of the Line chart</title>
<meta name="keywords"
content="rgraph html5 canvas example line charts">
<meta name="description"
content="An example of the type of Line chart that RGraph can produce">
<meta name="googlebot" content="NOODP">
<meta property="og:title"
content="RGraph: HTML5 Javascript charts library">
<meta property="og:description"
content="A charts library based on the HTML5 canvas tag">
<meta property="og:image"
content="http://www.rgraph.net/images/logo.png">
<link rel="stylesheet"
href="http://www.rgraph.net/css/website.css" type="text/css"
media="screen">
<link rel="icon" type="image/png"
href="http://www.rgraph.net/images/favicon.png">
<!-- Place this tag in your head or just before your close body tag -->
<script type="text/javascript"
src="https://apis.google.com/js/plusone.js"></script>
<script src="http://www.rgraph.net/libraries/RGraph.common.core.js"></script>
<script src="http://www.rgraph.net/libraries/RGraph.line.js"></script><!--[if lt IE 9]><script src="../excanvas/excanvas.original.js"></script><![endif]-->
<script>
window.onload = function ()
{
var line1 = new RGraph.Line('line1', [56,4,78,4,6,5,7,8,9,2,1,444,10,43,56,4,78,4,6,5,7,8,9,2,1,444,10,43,56,4,78,4,6,5,7,8,9,2,1,444,10,43,56,4,78,4,6,5,7,8,9,2,1,444,10,43]);
line1.Set('chart.background.grid', true);
line1.Set('chart.linewidth', 2);
line1.Set('chart.gutter.left', 135);
line1.Set('chart.hmargin', 5);
if (!document.all || RGraph.isIE9up()) {
line1.Set('chart.shadow', true);
}
line1.Set('chart.tickmarks', null);
line1.Set('chart.units.post', '°C');
line1.Set('chart.colors', ['red']);
line1.Set('chart.background.grid.autofit', true);
line1.Set('chart.background.grid.autofit.numhlines', 20);
line1.Set('chart.curvy', 1);
line1.Set('chart.curvy.factor', 0.25);
line1.Set('chart.labels',['1','2','3','4','5','6','7','8','9','10','11','12','13','1','2','3','4','5','6','7','8','9','10','11','12','13']);
line1.Set('chart.title','Arduino');
line1.Draw();
}
</script>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-54706-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<title></title>
</head>
<body>
<script>
if (RGraph.isOld()) {
document.write('<div style="background-color: #fee; border: 2px dashed red; padding: 5px"><b>Important</b>
Internet Explorer does not natively support the HTML5 canvas tag, so if you want to see the charts, you can either:<ul><li>Install <a href="http://code.google.com/chrome/chromeframe/">Google Chrome Frame</a></li><li>Use ExCanvas. This is provided in the RGraph Archive.</li><li>Use another browser entirely. Your choices are Firefox 3.5+, Chrome 2+, Safari 4+ or Opera 10.5+. </li></ul> <b>Note:</b> Internet Explorer 9 fully supports the canvas tag.</div>');
}
</script>
<div>
<div style="text-align: center;"><canvas id="line1"
width="600" height="250">[Please
wait...]</canvas>
</div>
</div>
</body>
</html>
now on line 60 you can see I need to put the measuring points (var line1 = new RGraph.Line('line1', [])).
So I want those to come from the Arduino.
Somehow i need to find a way to send the temperature to the webserver and store it in an array or something.
I think I want to do it with a query string, but i have no idea how. I've done some research but still
I hope it's not to confusing (: