Thanks for offering the help!  I wish I could figure it out myself 
but I just can't seem to.

Well it's an auction script that starts here: 
http://www.createawebbiz.com/Auction/index.htm  The only thing is 
that I'm not sure what part of the script isn't working so that I 
can send it. lol
  It takes the signup process thru this page: 
http://www.createawebbiz.com/Auction/confirminfo.php
Which has this for script (excluding the html):
<?php
require("config.php");
$usertable="auction";

if (empty($_POST["id"])) { echo "Error."; die(); }
elseif (!empty($_POST["id"])) {
 $id = $_POST["id"];

mysql_connect($hostname,$username, $password) or die ("error");
mysql_select_db($dbname);

 $sql = "SELECT * from $usertable WHERE id='$id'";
 $result = mysql_query($sql);
 $myrow = mysql_fetch_array($result);
 $id = $myrow["id"];
 if (mysql_num_rows($result) > 0) {
  $sql = "UPDATE $usertable SET confirm='yes' WHERE id='$id'";
  $result = mysql_query($sql);
  showpage($id);
  die();
 }
 else { echo "The verification code does not match.  Please check it 
and retype."; die(); }
}

function showpage($id) {
?>

<?php
}
?>

This is the config.php that I have:

<?php
$hostname="localhost";
$username="createaw";
$password="biz05";
$dbname="createaw_auction";


$headers = "From: [EMAIL PROTECTED]";


$linkto = "createawebbiz.com";

$max_size = 100000;
?>

I have changed the email a couple of times but nothing.

I would assume that this is the page that should send me an email or 
something to let me know someone has submitted something.  Any help 
would be appreciated.  If this looks fine then maybe it's MySQL 
database that I have set up for it.
Cindy
> Perhaps you could post the scripts that don't work, then someone 
could figure out why?
> 
> Jane
> Dorset, UK





Community email addresses:
  Post message: [email protected]
  Subscribe:    [EMAIL PROTECTED]
  Unsubscribe:  [EMAIL PROTECTED]
  List owner:   [EMAIL PROTECTED]

Shortcut URL to this page:
  http://groups.yahoo.com/group/php-list 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/php-list/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to