Sebolains Posted September 21, 2008 Share Posted September 21, 2008 Hi, I've a very small product database I'm using for my website. The database is a simple .txt file. each field is separated from the other by a tab. I'm looking for what I need to put in this part of the code: list($ID, $name, $description)=explode('HERE',$line); I know is something like \t or /t. Does anyone know? Link to comment https://forums.phpfreaks.com/topic/125144-database-reading/ Share on other sites More sharing options...
redarrow Posted September 21, 2008 Share Posted September 21, 2008 dont think you need it mate..... <?php $a="my name is redarrow"; $b=explode(' ',$a); $c=implode(' ',$b); echo $c; ?> Link to comment https://forums.phpfreaks.com/topic/125144-database-reading/#findComment-646811 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.