topical media & game development

talk show tell print

basic-mysql-17-PHPApp-delete.php / php



  <?
  
***************************************************************************** Author: Geoff Moes and Robert Sheldon Project: Begining MySQL - Chapter 17 Module: delete.php Date: 12/10/04 Description: Include file that contains the delete for the insert functionality. *****************************************************************************

  
  ?>
  
  <?
  // Build the DELETE statement
  deleteSql = "DELETE FROM Transactions WHERE TransID = 'transactionId'";
  
  // Execute the DELETE statement
  mysql_query(deleteSql)
     or die("Error in query deleteSql " . mysql_error());
  ?>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.