Thanks that did solve the issue i was running into.

-----Original Message-----
From: Dimitar Peikov [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 29, 2001 7:14 AM
To: Boyd, David
Subject: Re: Help working with html, embper, and oracle 


Use this :
$sql = "INSERT INTO incident (incident.q2, incident.logged_datetime)
          VALUES (?, ?)";

$dbh = GetDSN();
$dat = $dbh->prepare($sql);
$dat->execute($fdat{'incident.q2'}, $fdat{'incident.logged_datetime'});

instead of :


$sql = "INSERT INTO incident (incident.q2, incident.logged_datetime)
          VALUES
('$fdat{'incident.q2'}',$fdat{'incident.logged_datetime'})";

$dbh = GetDSN();
$dat = $dbh->prepare($sql);
$dat->execute;

-- 
Dimitar Peikov
Programmer Analyst
Globalization Group
"We Build e-Business"  

RILA Solutions  
27 Building, Acad.G.Bonchev Str.  
1113 Sofia, Bulgaria  

phone: (+359 2) 9797320 
phone: (+359 2) 9797300 
fax:   (+359 2) 9733355  
http://www.rila.com 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to