Archive for January, 2009

PHP Open Source Heaven

php2The internet is composed of many web sites with most written in PHP, some in python and many other sub languages which are based on other proprietary formats. The heavy use of PHP necessitates the issuance of frequent updates which addresses security issues and flaws that prevents hackers from getting access or control of vulnerable implementations of systems using PHP in Windows. Windows Being the most targeted Operating System makes it very vulnerable but thanks to the open nature of the web, any security flaws that are found are immediately found and announced getting the community on the hunt for an immediate solution.
(more…)

パーシング

イメージ提供:farm1.static.flickr.com

URLをブラウザーのアドレスバーにタイプする時、例としてhttp://www.fairgound.com とタイプし、Enterをクリックしたとしましょう。あなたがしていることは、あるウェブサーバーにリクエストを送り、そのサーバーがある場所にあるウェブページの内容を取ってくるのです。 あなたが見るブラウザーはあなたが依頼した実際のコードのページのHTMLの結果であって、実際のコードがサーバー側のスクリプトを使って見せるページのアウトプットではありません。 パーシングというのは実際のコードをHTMLに変換する過程です。ウェブサーバーのパーサーエンジンが変換の責任を持ちます。あなたのブラウザーが見せるHTMLのアウトプットの裏には長く複雑なPhpコードの迷路が存在します。あなたがURLをリクエストすると、ウェブページが解析され、サーバーがあなたのブラウザーにHTMLアウトプットを送る前にHTMLに変換されたものを送ります。