complete sql to html table class.features filtering, forming variable
declaration,editing,hidden params.inspired from class html_table in
example table.php but bad thing it is PHP4 beta 2!! and sybase only
<?php
// if you enhance this class please let me know.watch out for future releases of this class..
require("bow_connect.php"); //this is used for connect_db
require("enh_table.php"); // this is the file
$ht->assign_editable(1); //edits itemcode field
$ht->init_hidden(0);
//column itemname is set as an hidden parameter
$ht->init_buttonheader("zozo");
$ht->set_filter(1,">",31);
// this filter ensures displaying rows greater then 31.see function for more filters..
$z ="foo";
$ht->init_button(-1,"FDSblckbtn.gif","oldu","show_values.php","f1",$z);
// "f1 means get itemcode field as an hidden parameter.no need to define it explicitly
echo "button tanitimi oldu";
$ht->run_query();
godmit wrote :251
Where the *hell* are the required files?
appears useless. no homepage link. nothing.
Boaz Yahav wrote :252
The file is attached.
Take a look at the top of the example for the attached
file for download.
Darker Sun wrote :306
Well, one of two required files are available for download, where is the other or what does it do so I can
write it myself?
//DS
Ollie Supit wrote :702
The other file (bow_connect.php) contains connection variables to go intothe connect_db function (ie hostname, dbnamde, username & password) specific to each implementation)
Ollie Supit wrote :703
The other file (bow_connect.php) contains connection variables to go intothe connect_db function (ie hostname, dbname, username & password) specific to each implementation)