Hi Jon-David,

not sure that this is the only problem, but rewrite your query like this
(single quotes araound the values):


$query="insert into BUGS (APP, APP_VERSION, BUILD, OS, SEVERITY,
                          BUG_PRIORITY, BUG_STATE, SB_USER, STEPS, EXPECTED,
                          OBSERVED, STATUS, OPENED)
                  values ('$txtApp','$numVersion','$txtBuild','$txtOs', '$frmSeverity',
                          '$numPriority', '$txtState', '$txtUser', '$txtSteps', 
'$txtExpected',
                          '$txtObserved', '$frmStatus', 'NOW');";

Lutz


[EMAIL PROTECTED] (Jon-David Schlough) writes:

>       $query="insert into BUGS (APP, APP_VERSION, BUILD, OS, SEVERITY,
> BUG_PRIORITY, BUG_STATE,                                        SB_USER, STEPS, 
>EXPECTED, OBSERVED, STATUS,
> OPENED)
>                       values ("$txtApp","$numVersion","$txtBuild","$txtOs", 
>"$frmSeverity",
>                                 "$numPriority", "$txtState", "$txtUser", 
>"$txtSteps", "$txtExpected",
>                                 "$txtObserved", "$frmStatus", "NOW");";


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to