| 
	
 | 
 Posted by Stefan Heinrichsen on 05/10/05 03:48 
Am Mo 09.05.05 um 15:07 CEST schrieb marslee@hotmail.com: 
 
> I had problem of writing the php data to the html, everytime i submit 
> the info, the data is added to the database, but not to the html file 
>  
> fwrite($ourFileHandle, "$last"\n$comment");  
 
Hint: do a error_reporting(E_ALL); in you scripts. Than you propably had 
seen the problem of the wrong quotes: 
fwrite($ourFileHandle, "$last"\n$comment");  
should be 
fwrite($ourFileHandle, "$last\n$comment");  
 
stefan
 
[Back to original message] 
 |