Tuesday, July 31, 2012

5 Helpful Tips for Creating Secure PHP Applications

PHP is one of the most popular programming languages for the web. Sometimes a feature-friendly language can help the programmer too much, and security holes can creep in, creating roadblocks in the development path. In this tutorial, we will take a look at 5 tips to help you avoid some common PHP security pitfalls and development glitches. Tip 1: Use Proper Error ReportingDuring the development process, application error reporting...

PHP Security / SQL Security

Web Security: The Big PictureWhether your site is the web presence for a large multinational, a gallery showing your product range and inviting potential customers to come into the shop, or a personal site exhibiting your holiday photos, web security matters. After the hard work put in to make your site look good and respond to your users, the last thing you want is for a malicious hacker to come along, perform a PHP hack and break it somehow. There are a number of problems in web security, and unfortunately not all of them have definite...

Sunday, July 22, 2012

Connecting JSP To Mysql Database Lesson

My brother Ravi Tamada request one mail about his college presentation. He is planning to do web dynamic project. So i am giving small explanation about JSP (Java Server Pages) to Mysql Connection structure, Tomcat directory structure and simple database examples. Login.html Code : <body> <form action="login.jsp" method="post"> User name :<input type="text" name="usr" /> password :<input type="password" name="pwd" /> <input...

Make Windows Genuine

Have you updated your copy of Windows and received the "This copy of Windows is not genuine" notification. Have you ever wondered how to get rid of it? The Windows Genuine Advantage notification checks if you have a genuine copy of Windows registered to that computer. It allows you to update your computer with the Windows updates. If you have installed it, and you do not have a genuine copy of Windows XP installed, then you may notice an...

Hacking Algorithm

In a security context, a hacker is someone involved in computer security/insecurity, specializing in the discovery of exploits in systems (for exploitation or prevention), or in obtaining or preventing unauthorized access to systems through skills, tactics and detailed knowledge. void main(){ for(i = 0 knowledge; i < knowledge; i++) while(you don't know how something works) {    Read(Your Brain, i);    Experiment(Your Brain, i);    Learn(Your Brain, i); }} Being a...

Send Mail using SMTP and PHP.

This post about "Sending Mail using SMTP and PHP". Now you can send emails with SMTP authentication using this script. Every mail needed server authentication, So you have to buy mail server. It's very useful you can implement this on your web projects. This tutorial contains three files. - Index.php - SMTPconfig.php // SMTP Server Cofiguration - SMTPClass.php // SMTP Mail Sending Class Download Script SMTPconfig.php You have to change...

Displaying RSS Feed with PHP

This article explains to displaying RSS(XML format) feed like popurls.com (popular urls in one place) using simplexml_load_file() a PHP function. It's very useful to display your blog feeds as like Recent articles(headlines) list. RSS- Really Simple Syndication. Reading XML data and presenting with HTML. Download Script     Live Demo Index.php RSS display page: File contains HTML tags and PHP included rssclass.php. You have...

Hack your Own Web Project ? SQL Injection

Are you looking for some useful tips to improve your web projects security? In this post I suggest you some interesting points about this topic. Hacking is very interesting topic you can improve programming skill. SQL Injection SQL Injection like this Login Java Code String userid = request.getParameter("userid"); String password = request.getParameter("password"); Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); connection = DriverManager.getConnection("jdbc:odbc:projectDB"); query...

Add Security to your PHP projects using .htaccess file

Some days back I published an article about SQL Injection. In this article very small discussion about .htaccess file. After lots of requests I publish this article to add more security to your php application using .htaccess file. In this tutorial I want to explain about hiding .php extensions and URL rewriting. So improve your Web projects security and quality. Making .htaccess file Very simple open any editor like notepad just file save as...

Secure PHP Login Page Example

PHP - Hypertext Preprocessor before it was a Personal Home Page now a days very popular open source language in web world. PHP Login Page Exampl...

Voting system with jQuery, Ajax and PHP.

This post about Dzone like voting system with jQuery, Ajax and PHP. This script helps you to display user votes on blog post. IP address based voting system I hope you like this thanks! Take a look at live demo and give your votes. Download Script     Live Demo Database Design Messages Table : CREATE TABLE messages( mes_id INT PRIMARY KEY AUTO_INCREMENT, msg TEXT, up INT, down INT); Voting_IP Table : Storing IP address CREATE...

PHP Login Script with Encryption.

In this post I want to explain how to insert encrypted password while registration and accessing the same with login time. I had implement this at labs.9lessons.info login page. I'm just storing encrypted user password in database. Demo username ='test' and password = 'test' Download Script     Live Demo Database MySQL admin table columns id, username, passcode. CREATE TABLE admin ( id INT PRIMARY KEY AUTO_INCREMENT, username...

Twitter Like More Button with jQuery and Ajax.

This is an interesting tutorial I had developed this using jQuery and Ajax. Some days back twitter added new feature like 'more' button it's nice the some thing I'm presenting in this post. Download Script     Live Demo Updated Version Twitter Style Load More Results with jQuery and Ajax. First create a database table. CREATE TABLE messages( msg_id INT AUTO_INCREMENT PRIMARY KEY, msg TEXT ); Step 1 first.js javascript code.. <script...