Search results

  1. H

    Adding a function

    I have some code below which outputs a HTML table. The values in each cell come from a database. I want to add a function to the view and delete cell (marked in red) so when everytime a user clicks on it, it will do a SQL command i.e. "Delete * From ".$Dis. How can i do this?? $temp = 1...
  2. H

    PHP Varibles Help

    I have a problem is passing the values across in the SQL in the PHP code below. The $z variable will get a value from the session, the $z value will then be used in the SQL. However the value doesn't get passed across to the SQL code. <? $db_conn = new COM("ADODB.Connection"); $connstr =...
  3. H

    Insert Function isn't working!!

    I have some code(below) that the INSERT function wont work. The error message displayed is: "Fatal error</b>: Uncaught exception 'com_exception' with message 'Error [0x8002000e] Invalid number of parameters." <? if ($a == 1) { echo "<script type='text/javascript'> \n"; echo "var temp1; \n"...
  4. H

    HTML table data into a Access Databse table

    I have a html table that contains data and i want to insert the data into an Access data. Any ideas how to do this? Table1: 01, Rich, Mike, 23, fred lane, 02, James, milner, 45, School Lane, 03, Rob, Matthews, 89, College Road, I connect to the database using this code: $db_conn = new...
  5. H

    How to capture motion with magnetic sensor?

    Hey there, Purpose: I want to design and build a basic system that detects human movement using magnetic sensors. These sensor will be attached to the human body. The problem that i have is that i dont understand how to build this system. I understand that you must have a magnetic...
Back
Top