Jump to content

forms using post and/or get statements


Recommended Posts

I'll give it a try. Just post the file on the forums and i'll copy/paste it into my Dreamweaver and take a look at it. (Just being a little carefull. Downloading scripts can be dangerous, not to say that you would do that)

242902[/snapback]

 

Thanks Matt. Here is the code to the first script.

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<title>Products</title>

</head>

 

<body>

<img src="http://images.google.com/images?q=tbn:eMqGzBOAocEJ:www.wedowed.com/gc187.jpg">

<form action="newproducts.php" method="post">

<Strong>Select A Product</Strong><br>

<select name="name[]" multiple>

<option value="Baseball Bat">Baseball Bat</option></option>

<option value="Mitt">Mitt</option></option>

<option value="ball">Baseball</option>

<option value="uniform">Uniform</option></select>

<p><strong>Summary:</strong><br>

<input type="text" name="summary" size="40"></p>

<p><strong>Price:</strong><br>

<input type="text" name="price" size="10">

<p><input type="submit" value="submit your request"></P>

</form>

 

</body>

</html>

 

Here is the code to the second script:

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<title>Newproducts.php</title>

</head>

 

<body>

 

<?php

 

$products = array(

array(

"Name:" => "Baseball Ball",

"Summary:" => "Made of Aluminum",

"Price:" => "$100",

)

);

foreach ($products as $p) {

while (list($k, $v) = each ($p)) {

echo "$k $v <br>";

echo $_post['$k $v<br>'];

}

};

 

echo "<p><strong>Description:</strong><br>";

echo "<p>This bat is garanteed to hit home runs every single time you strike the ball.";

echo "<p>No strikeouts or pop fly balls with this beauty.";

echo "<p>Check it out!</p>";

$msg = "Name: $_post[username]\n";

$msg .= "E-Mail: $_post\n";

$msg .= "Phone: $_post[phone]\n";

$msg .= "Comment: $_post[comment]\n";

$recipient = "nookala@traderonline";

$subject = "For Submission Results";

$mailheaders = "From: My Web Site <[email protected]> \n";

$mailheaders .= "Reply-To: $_post";

mail($recipient, $subject, $msg, $mailheaders);

 

?>

<form action="newtext.php" method="post" enctype="application/x-www-form-urlencoded">

<p><strong>Name:</strong><br>

<input type="text" name="username" id="username" size="25">

<p><strong>E-Mail:</strong><br>

<input type="text" name="email" id="email" size="25">

<p><strong>Phone:</strong><br>

<input type="text" name="phone" id="phone" size="12">

<p><strong>Comment:</strong><br>

<textarea name="comment" rows="5" cols="40"></textarea></P>

<p><input type="submit" value="send"></p>

</form>

 

</body>

</html>

 

 

Also is there a way to have all this in one script file?

 

Thanks so much for your help.

Dee

Thanks Matt.  Here is the code to the first script.

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<title>Products</title>

</head>

 

<body>

<img src="http://images.google.com/images?q=tbn:eMqGzBOAocEJ:www.wedowed.com/gc187.jpg">

<form action="newproducts.php" method="post">

<Strong>Select A Product</Strong><br>

<select name="name[]" multiple>

<option value="Baseball Bat">Baseball Bat</option></option>

<option value="Mitt">Mitt</option></option>

<option value="ball">Baseball</option>

<option value="uniform">Uniform</option></select>

<p><strong>Summary:</strong><br>

<input type="text" name="summary" size="40"></p>

<p><strong>Price:</strong><br>

<input type="text" name="price" size="10">

<p><input type="submit" value="submit your request"></P>

</form>

 

</body>

</html>

 

Here is the code to the second script:

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<title>Newproducts.php</title>

</head>

 

<body>

 

<?php

 

$products = array(

                array(

      "Name:" => "Baseball Ball",

      "Summary:" => "Made of Aluminum",

      "Price:" => "$100",

    )

  );

foreach ($products as $p) {

  while (list($k, $v) = each ($p)) {

      echo "$k $v <br>";

    echo $_post['$k $v<br>'];

      }

};

 

echo "<p><strong>Description:</strong><br>";

echo "<p>This bat is garanteed to hit home runs every single time you strike the ball.";

echo "<p>No strikeouts or pop fly balls with this beauty.";

echo "<p>Check it out!</p>";

$msg = "Name:  $_post[username]\n";

$msg .= "E-Mail: $_post\n";

$msg .= "Phone: $_post[phone]\n";

$msg .= "Comment: $_post[comment]\n";

$recipient = "nookala@traderonline";

$subject = "For Submission Results";

$mailheaders = "From: My Web Site <[email protected]> \n";

$mailheaders .= "Reply-To: $_post";

mail($recipient, $subject, $msg, $mailheaders);

 

?>

<form action="newtext.php" method="post" enctype="application/x-www-form-urlencoded">

<p><strong>Name:</strong><br>

<input type="text" name="username" id="username" size="25">

<p><strong>E-Mail:</strong><br>

<input type="text" name="email" id="email" size="25">

<p><strong>Phone:</strong><br>

<input type="text" name="phone" id="phone" size="12">

<p><strong>Comment:</strong><br>

<textarea name="comment" rows="5" cols="40"></textarea></P>

<p><input type="submit" value="send"></p>

</form>

 

</body>

</html>

Also is there a way to have all this in one script file?

 

Thanks so much for your help.

Dee

 

 

I never did get an answer for this problem. Please help.

Dee

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.