Guys, my center divider between the advertisement and the upload form got cut in IE. You can view my website Here below is my code <table width="11" border="0" cellspacing="2" cellpadding="0" align="left"> <caption></caption> <tr><td> <hr size="388" width="2"> </td> </tr> </table>
I think your Google ads are covering up your divider. You could put a wrapper around your ads and give it a right margin of 1px. That should push the divider over. Make sure you zero out the body of your HTML body. These may have lead to the difference in location of your ads. Css Body { Padding: 0px; Margin: 0px; } I am a hit and miss kind of guy with css. I sort of poke around until I fixed the problem, so these tips may not work but I tried.
Just wondering, what did you use to make it rename uploaded files like if I uploaded hello.txt it would rename it hello_txt25 ?
Thanks. I will give it a try now. I use str_replace to replace all invalid character "like symbols" to "_" and i also generate random number behind the file name to avoid duplication
Thats good. Because the way you have it now, if you didnt do that, someone could upload a file named index.php and your site would be replaced.