Update of /cvsroot/firebug/firebug/web
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7842
Modified Files:
db_create.php db_table_select.php
Log Message:
Changed database mote number scheme to go from 1 to n,
assuming base station id is 0.
Index: db_create.php
===================================================================
RCS file: /cvsroot/firebug/firebug/web/db_create.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** db_create.php 11 Mar 2004 23:41:04 -0000 1.14
--- db_create.php 7 Jul 2004 19:24:54 -0000 1.15
***************
*** 88,92 ****
<?php
! for ($i = 2; $i <= $nummotes+1; $i++) {
$statement = "insert into current values ($i,NULL,NULL,NULL,NULL,NULL,NULL);";
--- 88,92 ----
<?php
! for ($i = 1; $i <= $nummotes; $i++) {
$statement = "insert into current values ($i,NULL,NULL,NULL,NULL,NULL,NULL);";
Index: db_table_select.php
===================================================================
RCS file: /cvsroot/firebug/firebug/web/db_table_select.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** db_table_select.php 5 Jul 2004 19:44:00 -0000 1.7
--- db_table_select.php 7 Jul 2004 19:24:55 -0000 1.8
***************
*** 32,35 ****
--- 32,38 ----
<?php
+
+ phpinfo();
+
//if (!isset($HTTP_SESSION_VARS["tblname"])) {
if ($HTTP_POST_VARS["tbl1"]!=Null){
|