Sorry Samudasu, but if you can find easily in the PHP manual the paragraph that explains this oddity, then I'll let your flying comment go. If not, please take the time to understand someones problem before throwing the manual at them.
OK.
Code1:
echo"Delimitor is <$reseller_data[feed_delimiter]> it should be <\t>";
outputs:
Delimitor is <\t> it should be < >
Yet Code 2:
if( $reseller_data['feed_delimiter'] == '\t') $delimiter = "\t";
print("Delimiter is <$delimiter> it should be <\t>");
Outputs:
Delimiter is < > it should be < >
Whyso?