Advertisement

09.18.2007 at 11:53PM PDT, ID: 22837984
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

PhP Form post to mysql problem

Asked by TheTinkeringToad in PHP Scripting Language, PHP and Databases

I have two php pages
One is a form
The second is to post the form to a mysql database

I can get the first php page to work correctly
What that page does is create a selectable dropdown list of a column in the mysql database.
That seems to work correctly.
The second php page
This page is the one i want to use to post the data to the database.
i  have managed to over the last few days get it to post to the database kind of.
I say kind of because what i can get it to do is post to the data base but all i get out of it is a single strike colon.
This is all done on a apache server on localhost
Here is the  code for the dropdown list page
<code>
<?php
$user=' ';
$host='localhost';
$password=' ';
$database = 'budget';
$connection = mysql_connect($host,$user,$password);
if (!$connection) {
    die('Could not connect: ' . mysql_error());
}
$db = mysql_select_db($database,$connection);
if (!$db) {
    die ('Can\'t use foo : ' . mysql_error());
}
$query = ('SELECT purchasecat FROM main ');
$result = mysql_query($query);
echo "<form method='POST'  action='test.php'>";
echo "<select size='1' name='pt'>\n";
while ($row = mysql_fetch_array($result)){
extract($row);
echo "<option value=$purchasecat>$purchasecat</option>\n";
}
echo "</select>\n";
echo "<input type='submit' name='submit' value='Select Type of Purchase'>";
echo "</form>\n";
?>
</code>

Code for Second page that im using to post with
<code>
<?php

$name=$_POST['submit'];
$purchasecat = $_POST['pt'];
$link = mysql_connect('localhost', ' ', ' ');
if (!$link) {
    die('Could not connect: ' . mysql_error());
}
$db_selected = mysql_select_db('budget', $link);
if (!$db_selected) {
    die ('Can\'t use foo : ' . mysql_error());
}

if(isset($_POST['pt']))
{
mysql_query("INSERT INTO main (purchasecat) VALUES ('$purchasecat')");
mysql_close($link);
}
header("Location: http://x86-solutions.dyndns.org:7401/test/test1.php");
?>
</code>Start Free Trial
[+][-]09.18.2007 at 11:58PM PDT, ID: 19918703

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.19.2007 at 12:22AM PDT, ID: 19918772

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.19.2007 at 12:43AM PDT, ID: 19918847

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: PHP Scripting Language, PHP and Databases
Sign Up Now!
Solution Provided By: grahamnonweiler
Participating Experts: 3
Solution Grade: A
 
 
[+][-]09.19.2007 at 12:43AM PDT, ID: 19918848

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]09.19.2007 at 12:44AM PDT, ID: 19918849

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.19.2007 at 12:45AM PDT, ID: 19918852

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.19.2007 at 12:48AM PDT, ID: 19918864

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.19.2007 at 07:14AM PDT, ID: 19920794

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.19.2007 at 09:41AM PDT, ID: 19922242

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.20.2007 at 12:30AM PDT, ID: 19926662

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_1_20070628