View Single Post
Old 09-03-2005, 01:34 PM   #5
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
In robot_functions.php you might try running a query within the IF of the following code to append text to $result and see if that does it:
Code:
             if ((is_array($result)) && (count($result) > 0)) {
                // run query and stick content into $result[] here
                $f_handler = fopen($tempfile1,'wb');
                fwrite($f_handler,str_replace('ลก',' ',str_replace(chr(0xad),'-',implode(' ',$result))));
                fclose($f_handler);
             }
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote