i am using mysql
it gets stripped when i insert some values with 6' 8 ''
which means 6 feet and 8 inches
thanks in advance for any ideas
kalyan
Tom Z. Meinlschmidt wrote:
if you have MySQL databaze, you don't need to add extra slashes. simpy do insert like
$q="insert into table...values('$type'...
and mysql will convert that string itself.
for another databases you'll need to double '.. eg $type=ereg_replace("'","''",$type);