CSS Table Gallery
For those who looking for instant css code for table
http://icant.co.uk/csstablegallery/
For those who looking for instant css code for table
http://icant.co.uk/csstablegallery/
Problem:
Warning: Cannot modify header information – headers already sent by (output started at blah blah blah) in blahblahblah.php on line 90
Cause:
PHP script has output before calling header().
2 ways to get rid of this:
In php.ini, Set output_buffering to On. If no access to php.ini because of using shared hosting, add “PHP_FLAG output_buffering on” into .htaccess file.
Code [...]
I created an asp page and test it on my local computer, so sad when I execute the page from my Internet Explorer using IIS7, it says:
An error occurred on the server when processing the URL. Please contact the system administrator.
and I cannot see what is the problem with my code. After investigation, I found [...]