Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Forums
Favorite Tags
php x 6
Member Avatar for Robbastiaansen

Hi, I have this code that shows a page line by line with a 1 sec interval. Works with IE6 but not with IE8, Firefox, Chrome. <html> <head> <title>test</title> </head> <body> <?php if (ob_get_level() == 0) ob_start(); for($i=0;$i<10;$i++){ echo 'regel '.$i.' </br>'; ob_flush(); flush(); sleep(1); } ?> <br> </body> </html> …

0
72
Member Avatar for Robbastiaansen

Hi all, I am running a script that processes files line by line. It takes a while so I would like to echo a status update with each line so we can see where we are in the process. I started reading on the output buffers but that doesn't do …

Member Avatar for Robbastiaansen
0
1K
Member Avatar for Robbastiaansen

Hi, What I am trying to do is enter HTML code into a variable and then pass it along to another script with POST to have it used as the HTML content with PHPmailer. As soon as my HTML code that i paste into the textarea contains double quotes it …

Member Avatar for dietdew12z
0
2K