Posts by André Luiz • 116 points
3 posts
-
1
votes1
answer2256
viewsA: Anchor using Animate.scrollTop with custom height
Yes, you need to do 2 things: Measure the header height Discount header height value to integer value passed to scrollTop For (1), you can use Crome Dev Tools for Google Chrome, Firebug for Firefox…
jqueryanswered André Luiz 116 -
2
votes1
answer165
viewsA: Send mail with attachment
The function mime_content_type() is already obsolete. As said the user @lost, should be used today finfo(), that fulfills the same functionality in a better way. You can add at the beginning of your…
phpanswered André Luiz 116 -
7
votes3
answers4785
viewsA: PHP and Mysql, how are thousands of connections processed at the same time?
If there are 1000 connected clients on the site requesting Mysql, then there are 1000 Mysql connections? Not necessarily. Even if your database server supports a thousand connections simultaneously…