Before start working with SpreadSheet, you need to apply necessary configuration settings. For this you need:
<?php
// MySQL
$dsn = "mysql:dbname=ssheet;host=localhost;port=3306";
$db_user = "root";
$db_pass = "1";
$db_tick = "`";
// or for SQLSRV
// $dsn = "sqlsrv:Server=localhost;Database=ssheet";
// $db_user = "ssheet";
// $db_pass = "1";
// $db_tick = "\"";
$db_prefix = "dhx_";
$username = "admin";
$password = "qwert";
?>
After configuration is finished, you can run any sample from the folder spreadsheet/samples.
If you'd like to add SpreadSheet on your own page, move on to one of the initialization variants.
Back to top