[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[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.9

SELECT query works, INSERT query fails on one server; both work on other server

Asked by yamya in Interbase / Firebird Database, PHP and Databases

Tags: php, mysql, database

the only significant difference that I am able to see between two independently hosted servers is the folder structure on the server.

[minor differences are database, table, field names have been triple+ checked for typos]

I don't know how to troubleshoot this as a possible cause to why I can only get both INSERT & SELECT queries to work on one of the servers.

On the second server I get only SELECT query to execute.

I do not get an error message, and i do not get data entered into the database.

Hoping someone  can help to figure why if I can get the SELECT then what is in the way of the INSERT?


good server - www.domain.com/destinationfolder (rented space on a shared server; no touchie Apache)

bad server - www.domain.com/folder/folder/public_html/folder/file (rented with dedicated server & IP address; Apache Comanche Mohawk sic the IT guy on it)

The 'bad server' requires pre-pending adminName_dbUserName and adminName_dbName.  would this make a difference in how i write the INSERT query?

What can any one see that I cannot?

Thanks for you review and input.

Regards,
Amy
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
here's the HTML code that both forms are using, 
 
 
<form method="POST" action="addrecord.php">
Company:<br/> 
<input type="text" name="Company" />
......
<input type="submit" name="add" value="Add New Record" />
 
</form>
 
here's the good server php/mysql - 
 
if($add) {
	
mysql_connect("host","user","pw");
mysql_select_db("db");
 
$query="INSERT INTO table (UniqueID, Company)";
$query.="VALUES (NULL,'$Company')";
$result=mysql_query($query);
if ($result) 
echo "Successfully added -- " .$company . " -- to the DB .";
 
}
 
 
here's the bad server php/mysql -
 
<?php
if($add) {
 
 
mysql_connect("localhost", "admin_user", "pw") or die(mysql_error());
mysql_select_db("admin_database") or die(mysql_error());
 
 
$query="INSERT INTO table (UniqueRecordID, PhoneNo, CompanyName)";
$query.="VALUES (NULL,'$PhoneNo','$CompanyName')";
$result=mysql_query($query);
if ($result) 
echo "Successfully added -- " .$CompanyName . " -- to the DB .";
}
 
 
?>
[+][-]06/05/09 12:10 AM, ID: 24553864Expert Comment

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 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/05/09 12:15 AM, ID: 24553885Author Comment

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/05/09 12:20 AM, ID: 24553911Expert Comment

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 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/05/09 12:24 AM, ID: 24553929Author Comment

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/05/09 12:26 AM, ID: 24553939Author Comment

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/05/09 12:29 AM, ID: 24553956Expert Comment

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 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/05/09 12:32 AM, ID: 24553966Author Comment

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/05/09 12:33 AM, ID: 24553972Expert Comment

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 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/05/09 12:42 AM, ID: 24554017Author Comment

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/05/09 12:49 AM, ID: 24554052Expert Comment

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 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/05/09 12:58 AM, ID: 24554104Author Comment

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/05/09 01:07 AM, ID: 24554156Accepted Solution

View this solution now by starting your 30-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: Interbase / Firebird Database, PHP and Databases
Tags: php, mysql, database
Sign Up Now!
Solution Provided By: shrishti132
Participating Experts: 1
Solution Grade: A
 
[+][-]06/05/09 01:46 AM, ID: 24554393Author Comment

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/05/09 01:57 AM, ID: 24554463Author Comment

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/05/09 05:39 AM, ID: 24555717Expert Comment

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 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81 - Hierarchy / EE_QW_3_20080625