Thursday, September 18, 2008

// Connects to your Database
mysql_connect("your.hostaddress.com", "username", "password") or die(mysql_error());
mysql_select_db("Database_Name") or die(mysql_error());

//This code runs if the form has been submitted
if (isset($_POST['submit'])) {

//This makes sure they did not leave any fields blank
if (!$_POST['username'] | !$_POST['pass'] | !$_POST['pass2'] ) {
die('You did not complete all of the required fields');
}

// checks if the username is in use
if (!get_magic_quotes_gpc()) {
$_POST['username'] = addslashes($_POST['username']);
}
$usercheck = $_POST['username'];
$check = mysql_query("SELECT username FROM users WHERE username = '$usercheck'")
or die(mysql_error());
$check2 = mysql_num_rows($check);

//if the name exists it gives an error
if ($check2 != 0) {
die('Sorry, the username '.$_POST['username'].' is already in use.');
}

// this makes sure both passwords entered match
if ($_POST['pass'] != $_POST['pass2']) {
die('Your passwords did not match. ');
}

// here we encrypt the password and add slashes if needed
$_POST['pass'] = md5($_POST['pass']);
if (!get_magic_quotes_gpc()) {
$_POST['pass'] = addslashes($_POST['pass']);
$_POST['username'] = addslashes($_POST['username']);
}

// now we insert it into the database
$insert = "INSERT INTO users (username, password)
VALUES ('".$_POST['username']."', '".$_POST['pass']."')";
$add_member = mysql_query($insert);
?>


Registered


Thank you, you have registered - you may now login.

}
else
{
?>







Username:

Password:

Confirm Password:




}
?>
E

Monday, September 15, 2008

ENTER USER NAME :

ENTER PASSWORD :





This free script provided by JavaScript Kit

1. public class AcegiAjaxFilter extends OncePerRequestFilter {
2.
3. protected void doFilterInternal(HttpServletRequest request,
4. HttpServletResponse response,
5. FilterChain filterChain) throws ServletException, IOException {
6.
7. if (!isAjaxRequest(request)) {
8. filterChain.doFilter(request, response);
9. return;
10. }
11.
12. RedirectResponseWrapper redirectResponseWrapper = new RedirectResponseWrapper(response);
13.
14. filterChain.doFilter(request, redirectResponseWrapper);
15.
16. if (redirectResponseWrapper.getRedirect() != null) {
17. request.setCharacterEncoding("UTF-8");
18. response.setContentType("text/plain;charset=utf-8");
19.
20. response.setHeader("Cache-Control", "no-cache");
21. response.setDateHeader("Expires", 0);
22. response.setHeader("Pragma", "no-cache");
23.
24.
25. String redirectURL = redirectResponseWrapper.getRedirect();
26. String content;
27. if (redirectURL.indexOf("login_error=1") == -1) {
28. content = "url:" + redirectURL;
29. } else {
30. content = "error:" + ((AuthenticationException) request.
31. getSession().getAttribute(AbstractProcessingFilter.ACEGI_SECURITY_LAST_EXCEPTION_KEY)).getMessage();
32. }
33. response.getOutputStream().write(content.getBytes("UTF-8"));
34. }
35. }
36.
37.
38. private boolean isAjaxRequest(HttpServletRequest request) {
39. return request.getParameter("ajax") != null;
40. }
41. }




Quackit Tutorials

This is enough sample text to make the box grow scrollbars - then we can call the box a scroll box! Note that the borders are defined using CSS. More about CSS borders.

Quackit Tutorials

Sunday, September 14, 2008

IAN IS BOLD!!!