PHP And Ajax Related Useful Resources and CodesPHP And Ajax Related Useful Resources and CodesUseful Tools, Tutorials, Codes , Tips, Tricks and Resources for all Ajax and Php beginners and experts . Articles
PHP - a bad programming language - Dark side of PHP
2007-12-10 07:49:00 I’m a web developer by profession and have been involved in PHP development for last three years. PHP is very easy to learn and program in. But what i think, PHP is a incomplete programming language as well as a bad programming language which gives bad practise for the programmers. I can point out why a ... More About: Programming , Dark , Language , Side , Programming Language
Cross-site scripting ( xss ) attack by example and prevention in PHP
2007-12-07 18:58:00 What are cross-site scripting (XSS ) Attack s?Cross -site scripting attacks are attacks that target the end user instead of your actual site. Vulnerable web applications that don't check or validate properly incoming data let arbitrary code to run on a client computer (such as Javascript). The end result can be anything from stealing cookie data or redirecting to a different site, to embedding a browser exploit on a page. Anything that can be done with Javascript (a lot!).Example :Let us suppose that there is a comment form in the Michael's website of a section like photo gallary or article. He created a feature that let his viewers to comment on his photos or article by submitting a form. And he doesnot have much validation in this comment form.Now Sam (inturder) visits the Michael's website and he's jealous of Michael's website traffic and wants to steal some of his website's traffic. Then he can insert the follow code to his comment form Hi Michael, very gud job, keep it up! ... More About: Site , Prevention , Scripting
Cross-site scripting ( xss ) attack by example and prevention in PHP
2007-12-07 18:58:00 What are cross-site scripting (XSS ) Attack s? Cross -site scripting attacks are attacks that target the end user instead of your actual site. Vulnerable web applications that don’t check or validate properly incoming data let arbitrary code to run on a client computer (such as Javascript). The end result can be anything from stealing cookie data or ... More About: Site , Prevention , Scripting
Why php is more popular in the web
2007-12-06 18:37:00 PHP is popular because it's relatively easy to learn and relatively cheap to develop web projects.And in the other side, its a open source technology and development cost is lower than the other technologies like java and dot net.PHP's three key advantages over competing technologies:1. Designed for the Web - PHP has built-in features to handle heavily trafficked sites and to simplify common Web programming tasks.2. Ease of Use - Companies gain enhanced productivity of development teams and significantly reduced time-to-market of mission critical web applications.3. Open Source - Collaborative development leads to rapid technology advancement, superior code quality, a massive library of prewritten code, and comprehensive developer support and documentation.You can view the popularity of PHP from here - Popular ity of PHP.According to a Netcraft survey published in April 2002, PHP is now being used by over 24% of the sites on the Internet out of the 37.6 million web sites reported w... More About: Pula
Why php is more popular in the web
2007-12-06 18:37:00 PHP is popular because it’s relatively easy to learn and relatively cheap to develop web projects.And in the other side, its a open source technology and development cost is lower than the other technologies like java and dot net. PHP’s three key advantages over competing technologies: 1. Designed for the Web - PHP has built-in features to ... More About: Popular , Pula
Is google Invading privacy
2007-12-06 09:38:00 Google, the world?s largest Internet search engine, is on several fronts a danger that has to be stopped, a study released by Austria?s Graz University claims.A research team led by Prof Hermann Maurer, chairman of Graz University?s Institute for Information Systems and Computer Media, argues that Google is creating unacceptable monopolies in many areas of the worldwide web.According to his research, around 61 billion Internet searches are conducted each month. In the US, on average 57 per cent of searches are conducted with Google, and up to 95 per cent of Internet users use Google at least sometimes.?Google is massively invading privacy,? the study said with the company knowing more than any other organisation about individuals and companies, but not bound by national data protection laws.The study argues that Google is influencing economies in the way advertisements and documents are ranked.Source : http://www.thehimalayantimes.comI beg apology that this blog is specially for php... More About: Google , Privacy
Is google Invading privacy
2007-12-06 09:38:00 Google, the world?s largest Internet search engine, is on several fronts a danger that has to be stopped, a study released by Austria?s Graz University claims.A research team led by Prof Hermann Maurer, chairman of Graz University?s Institute for Information Systems and Computer Media, argues that Google is creating unacceptable monopolies in many areas of ... More About: Google , Privacy
A ajax tutorial for beginners
2007-12-05 19:26:00 What is ajax ?AJAX is an acronym for Asynchronous JavaScript And XML. AJAX is not a programming language. but simply a development technique for creating interactive web applications.A traditional web application will submit input (using an HTML form) to a web server. After the web server has processed the data, it will return a completely new web page to the user.Because the server returns a new web page each time the user submits input, traditional web applications often run slowly and tend to be less user friendly.With AJAX, web applications can send and retrieve data, without reloading the whole web page. This is done by sending HTTP Request to the server, and by modifying only parts of the web page using JavaScript.AJAX is based on the following open standards:JavaScript XML HTML CSS Ajax Example : Create a file called test.php and put the following codes.<html><head><script src="hint.js"></script></head ><body><form>First Name:<input... More About: Tutorial
A php tutorial for beginners
More articles from this author:2007-12-05 07:03:00 Taken directly from PHP's home, PHP.net, "PHP is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly." This is generally a good definition of PHP. However, it does contain a lot of terms you may not be used to. Another way to think of PHP is a powerful, behind the scenes scripting language that your visitors won't see! When someone visits your PHP webpage, your web server processes the PHP code. It then sees which parts it needs to show to visitors(content and pictures) and hides the other stuff(file operations, math calculations, etc.) then translates your PHP into HTML. After the translation into HTML, it sends the webpage to your visitor's web browser. Creating first php enabled page Create a file named hello.php and put it in your web server's root directory (usually ... More About: Tutorial 1, 2, 3, 4, 5 |



