[eluser]tayson[/eluser]
[quote author="mjhan300" date="1210183462"]Does anyone know of any examples of using Flexigrid to load an XML file. Nothing fancy here, just need the basics. All the site I run across either use json file format or don't go in to enough detail. Documentation is very limited.[/quote]
I did this:
data.php
Code:
<?
error_reporting(0);
function runSQL($rsql) {
$hostname = "xxx";
$username = "xxx";
$password = "xxx";
$dbname = "xxxx";
$connect = mysql_connect($hostname,$username,$password) or die ("Error: could not connect to database");
$db = mysql_select_db($dbname);
$result = mysql_query($rsql) or die (mysql_error());
return $result;
mysql_close($connect);
}