Hey guys, im new in dhtmlx and think its great but i got one problem with the sendData() Function.
I have two grids, i select some values from one an drag it to the other one and then editing it a bit.
After ive done all my edits i want mygrid3 to be saved in a text file (just at the moment while testing:) )
but i cant get it work. May its just a stupid typo or a big mistake of mine. here is my code:
html file:
Drag and Drop between Grids
|
|
Speichern
update.php:
<?php
session_start();
if(!isset($_SESSION[“id”]))
$_SESSION[“id”] = microtime();
$fh = fopen(‘test.txt’, ‘w+’);
fwrite($fh, “muh”);
fwrite($fh, ‘$_GET[“Spielername”] $_GET[“Gelb”] $_GET[“pubdate”] $_SESSION[“id”]’);
fclose($fh);
?>
Thx for helping guys