Jump to content

Put this into this?


Cory94bailly

Recommended Posts

How can I take this captcha form:

 

<?php 
session_start();

if( isset($_POST['submit'])) {
   if( $_SESSION['security_code'] == $_POST['security_code'] && !empty($_SESSION['security_code'] ) ) {
	// Insert you code for processing the form here, e.g emailing the submission, entering it into a database. 
	echo 'Thank you. Your message said "'.$_POST['message'].'"';
	unset($_SESSION['security_code']);
   } else {
	// Insert your code for showing an error message here
	echo 'Sorry, you have provided an invalid security code';
   }
} else {
?>

<form action="form.php" method="post">
	<img src="security_image.php?width=100&height=40&characters=5" /><br />
	<label for="security_code">Security Code: </label><input id="security_code" name="security_code" type="text" /><br />
	<input type="submit" name="submit" value="Submit" />
</form>

<?php
}
?>

 

 

 

 

And put it into this:

 

<?php
// Connects to your Database
mysql_connect("$path", "$username", "$password") or die(mysql_error());
mysql_select_db("$database") 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 members 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 members (username, password)
VALUES ('".$_POST['username']."', '".$_POST['pass']."')";
$add_member = mysql_query($insert);
?>


<h1>Registered</h1>
<p>Thank you, you have registered - you may now login</a>.</p>
<?php
}
else
{
?>

<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<table border="0">
<tr><td>
Desired Username:
<input type="text" name="username" maxlength="60" />
</td></tr>
<tr><td>
Password:
<input type="password" name="pass" maxlength="10" />
</td></tr>
<tr><td>
Confirm Password:
<input type="password" name="pass2" maxlength="10" />
</td></tr>
<tr><td colspan="2">
<input type="submit" name="submit" value="Register" />
</td></tr>
</table>
</form>
</div>

<?php
}
?>

 

 

???

 

Also, how can I fix it so the footer and other stuff loads when they get fields wrong? Like it just shows the echo and the footer and other stuff is never shown.. (Whole code below.)

 

 

 

 

<?
include("includes/config.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Author: Reality Software
Website: http://www.realitysoftware.ca
Note: This is a free template released under the Creative Commons Attribution 3.0 license, 
which means you can use it in any way you want provided you keep the link to the author intact.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Free Configuration Service Official Website</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>

<body>
<!-- header -->
    <div id="header">
    <div id="menu">
       <div id="menu_list"> 
        <a href="index.php">Home</a>
        <img src="images/splitter.gif" class="splitter" alt="" />
        <a href="news.php">News</a>
        <img src="images/splitter.gif" class="splitter" alt="" />
        <a href="aboutus.php">About Us</a>
        <img src="images/splitter.gif" class="splitter" alt="" />
        <a href="services.php">Services</a>
        <img src="images/splitter.gif" class="splitter" alt="" />
        <a href="team.php">Team</a>
        <img src="images/splitter.gif" class="splitter" alt="" />
        <a href="login.php">Login</a>
        <img src="images/splitter.gif" class="splitter" alt="" />
        <a href="register.php"><font color="red">Register</font></a>
        </div>
    </div>
</div>
<? include('includes/logo.php'); ?>
    <!--end header -->
    <!-- main -->
    <div id="main">
<? include('includes/right.php'); ?>
          </div>
          <div id="text" >
<?php
// Connects to your Database
mysql_connect("$path", "$username", "$password") or die(mysql_error());
mysql_select_db("$database") 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 members 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 members (username, password)
VALUES ('".$_POST['username']."', '".$_POST['pass']."')";
$add_member = mysql_query($insert);
?>


<h1>Registered</h1>
<p>Thank you, you have registered - you may now login</a>.</p>
<?php
}
else
{
?>

<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<table border="0">
<tr><td>
Desired Username:
<input type="text" name="username" maxlength="60" />
</td></tr>
<tr><td>
Password:
<input type="password" name="pass" maxlength="10" />
</td></tr>
<tr><td>
Confirm Password:
<input type="password" name="pass2" maxlength="10" />
</td></tr>
<tr><td colspan="2">
<input type="submit" name="submit" value="Register" />
</td></tr>
</table>
</form>
</div>

<?php
}
?>
                
    <!-- end main -->
<? include('includes/footer.php'); ?> 
</div>
</body>
</html>

 

 

Thanks!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.