update
Hi
been through the tutorial again and have been working with just the insert page located at
users_Insert.php
(I haven't restricted any access yet - I add the link for code view purposes)
If I go to 
users_LogIn.php
and log in  I've set this up to go to the users_Insert.php page.
( used data assist wizard on the users table)
On the users_Insert.php page I've added five upload fields which work and upload images perfectly.
I then followed the instructions to add the insert record behavior using the dataAssist isert record behaviour.
That added the code below:
<?php 
// WA Application Builder Insert
if ($_SERVER["REQUEST_METHOD"] == "POST") // Trigger
{
  $WA_connection = $localhost;
  $WA_table = "users";
  $WA_sessionName = "users_UserID";
  $WA_redirectURL = "";
  $WA_keepQueryString = false;
  $WA_indexField = "UserID";
  $WA_fieldNamesStr = "UserImage1";
  $WA_fieldValuesStr = "".$WA_DFP_UploadStatus["WA_UploadResult1"]["serverFileName"]  ."";
  $WA_columnTypesStr = "',none,''";
  $WA_fieldNames = explode("|", $WA_fieldNamesStr);
  $WA_fieldValues = explode("|", $WA_fieldValuesStr);
  $WA_columns = explode("|", $WA_columnTypesStr);
  $WA_connectionDB = $database_localhost;
  mysql_select_db($WA_connectionDB, $WA_connection);
  if (!session_id()) session_start();
  $insertParamsObj = WA_AB_generateInsertParams($WA_fieldNames, $WA_columns, $WA_fieldValues, -1);
  $WA_Sql = "INSERT INTO `" . $WA_table . "` (" . $insertParamsObj->WA_tableValues . ") VALUES (" . $insertParamsObj->WA_dbValues . ")";
  $MM_editCmd = mysql_query($WA_Sql, $WA_connection) or die(mysql_error());
  $_SESSION[$WA_sessionName] = mysql_insert_id();
  if ($WA_redirectURL != "")  {
    if ($WA_keepQueryString && $WA_redirectURL != "" && isset($_SERVER["QUERY_STRING"]) && $_SERVER["QUERY_STRING"] !== "" && sizeof($_POST) > 0) {
      $WA_redirectURL .= ((strpos($WA_redirectURL, '?') === false)?"?":"&").$_SERVER["QUERY_STRING"];
    }
    header("Location: ".$WA_redirectURL);
  }
}
When I upload however no entry is made in the database
Any ideas?
thanks
Ian

 














