Never, Ever, Trust Your Users It can never be said enough times, you should never, ever, ever trust your users to send you the data you expect. I have heard many people respond to that with something like “Oh, nobody malicious would be interested in my siteâ€. Leaving aside that that could not be more… Continue reading Some Security Issue (php)
Month: November 2010
Face Ditector Jquery Plugin
Face detection is a common feature in most digital cameras today; the white or red square that pops around someones face when we are focusing the camera on that person. Face detection algorithms enables the software to pinpoint the locations and sizes of human faces in digital images, whatever the surrounding objects may be. Face-Detection… Continue reading Face Ditector Jquery Plugin
header() function in the middle of a php page
We can’t use header() function in the middle of a page in php. header() function is used for redirection. If the page prints something before this function then we get a message like “header already sent by….blablablaâ€. But we have another way to use header() function in anywhere of a page. We have to use… Continue reading header() function in the middle of a php page