Search found 4 matches

by Ashcan
Thu May 01, 2003 5:37 am
Forum: PHP - Code
Topic: converting MSWord Documents to HTML
Replies: 1
Views: 593

converting MSWord Documents to HTML

does anyone know of a tutorial or location of a script that can convert an uploaded Word doc to html on a linux server. I have found various methods but they all use COM and only work on Windows servers. I need it to be able to retain the formatting within the document. any suggestions would be appr...
by Ashcan
Sun Apr 20, 2003 6:57 pm
Forum: PHP - Code
Topic: Data from Mysql as CSV file
Replies: 6
Views: 694

yeha.. finally- its alive !!

thanks heaps for that.
by Ashcan
Sun Apr 20, 2003 1:03 am
Forum: PHP - Code
Topic: Data from Mysql as CSV file
Replies: 6
Views: 694

thanks for the responses, pootergeist - thats managed to get the values into a CSV file however its duplicating all of the values. ie. a,a,b,b,c,c,d,d,e,e,f,f etc. instead of a,b,c,d,e,f so I get 10 values instead of 5 if I modify this to a foreach($row as $f_data => $value) I get 0,a,1,b,2,c etc. I...
by Ashcan
Sat Apr 19, 2003 7:26 am
Forum: PHP - Code
Topic: Data from Mysql as CSV file
Replies: 6
Views: 694

Data from Mysql as CSV file

I want to write what I thought would be simple function for CSV dumping of values. everything works fine except it's inserting the $fin_str into the file as $r=['field_name'] text instead of the actual values. <?php $table = 'products'; $fields = mysql_query( "select * from $table"); // ge...