Thanks - that solved that problem. But I have another now. After submitting, when it goes to my confirm.php page, I get the following error:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '== $'1'' at line 1
Here's the start of my confirm page:
<?php require_once("webassist/security_assist/wa_md5encryption.php"); ?>
<?php require_once('Connections/connContacts.php'); ?>
<?php require_once("webassist/database_management/wa_appbuilder_php.php"); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
*********************************
Doesn't seem to be a '==$1' in sight. I've attached the confirm page so you can check.
Thanks - Joe