Beginner Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOtherBeginner Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
  #1  
Old November 21st, 2000, 03:42 PM
Hartmann's Avatar
Hartmann Hartmann is offline
chown python:users\ /world
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2000
Location: Texas Tech
Posts: 95 Hartmann User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
I keep getting the Error at line 25 with this code.

<?
$connection = mysql_connect("localhost","root","") or die("Couldn't connect to DB");
mysql_select_db("abraham",$connection) or die("Couldn't select DB");
$select = "SELECT username, password FROM users WHERE username='$username' AND password='$password'";
$getnum = mysql_query($select,$connection);
$number = mysql_num_rows($getnum);
if($number == 1)
{
$decide = "SELECT * FROM info WHERE id='$id'";
$information = mysql_query($decide);
$infoarray = mysql_fetch_array($information);
$ssn1 = $infoarray["ssn"];
$LastName1 = $infoarray["LastName"];
$FirstName1 = $infoarray["FirstName"];
$Address2 = $infoarray["address1"];
$City1 = $infoarray["city"];
$State1 = $infoarray["state"];
$zip1 = $infoarray["zip"];
$hphone1 = $infoarray["hphone"];
$eligible1 = $infoarray["eligible"];
$felony1 = $infoarray["felony"];
if((!$ssn1) && (!$LastName1) && (!$FirstName1) && (!$Address2) && (!$City1) && (!$State1) && (!$zip1) && (!$hphone1) && (!$eligible1) && (!$felony1))
{
$infoquery = "INSERT INTO info (ssn, LastName, FirstName, initial, othername, email, address1, city, address2, state, zip, hphone, aphone1, aphone2, eligible, emergencynum, felony, felexplain, referred, refname, refcomment) VALUES ('$ssn', '$lastname', '$firstname', '$initial', '$othername', '$email', '$address1', '$city', '$address2', '$state', '$zip', '$hphone', '$aphone1', '$aphone2', '$eligible', '$emergencynum', '$felony', '$felexplain', '$referred', '$refname', '$refcomment') WHERE id='$id'";
mysql_query($infoquery,$connection) or die("Couldn't Insert At Line 25!");
echo $infoquery;
}
else
{
$infoquery="UPDATE info SET ssn='$ssn', LastName='$lastname', FirstName='$firstname', initial='$initial', othername='$othername', email='$email', address1='$address1', city='$city', address2='$address2', state='$state', zip='$zip', hphone='$hphone', aphone1='$aphone1', aphone2='$aphone', elgible='$eligible', emergencynum='$emergencynum', felony='$felony', felexplain='$felonyexp' WHERE username='$username'";
mysql_query($infoquery) or die("Couldn't update at line 30");
}

}
else
{
echo "You are not an authorized user. Please <a href="main.html">Click Here</A> to login.";
}
?>

Thanks,


------------------
Hartmann

Reply With Quote
  #2  
Old November 25th, 2000, 09:47 AM
Sepodati's Avatar
Sepodati Sepodati is offline
Banned
Dev Shed God 19th Plane (14000 - 14499 posts)
 
Join Date: Dec 1999
Location: Afghanistan
Posts: 14,360 Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)Sepodati User rank is General 9th Grade (Above 100000 Reputation Level)  Folding Points: 69546 Folding Title: Intermediate FolderFolding Points: 69546 Folding Title: Intermediate FolderFolding Points: 69546 Folding Title: Intermediate FolderFolding Points: 69546 Folding Title: Intermediate Folder
Time spent in forums: 2 Months 3 Weeks 6 Days 2 h 28 m 56 sec
Reputation Power: 1606
Send a message via ICQ to Sepodati Send a message via Yahoo to Sepodati
OK. Is that a question, or are you just telling us so we know?

use this in your die statement to find out what is going wrong

or die("Error: " . mysql_error());

That'll give you a more detailed error message so you can figure out what's going on. I'm guessing it's something concerning quotes in the variables you're trying to insert. if so, look into addslashes().

Also, you might want to look into the REPLACE command for MySQL. It'll make new row or replace the data in the row if it already exists. That can simplify your page a lot.

Also, look into the list() function
<BLOCKQUOTE><font size="1" face="Verdana,Arial,Helvetica">code:</font><HR><pre>
$query = "SELECT id,ssn,name FROM your_table";
$result = mysql_query($query);
if(list($id,$ssn,$name) = mysql_fetch_row($result))
{
echo "Id = $id<BR>n";
echo "SSN = $ssn<BR>n";
echo "Name = $name<BR>n";
}
else
{
echo "Nothing found<BR>n";
}
[/code]
Use something like that instead of your long list of $var = $info_array["whatever"]; You should be able to get rid of all of that by using the REPLACE command, though.

Have fun.

Oh...one more thing. If you post this in the PHP forum you'll get a faster answers, probably....

---John Holmes...

------------------
*************************************************************
* The manual can probably answer 90% of your questions...
*
* PHP Manual. www.php.net/manual
* MySQL Manual: www.mysql.com/documentation/mysql/bychapter
*************************************************************

Reply With Quote
  #3  
Old November 25th, 2000, 04:42 PM
Hartmann's Avatar
Hartmann Hartmann is offline
chown python:users\ /world
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2000
Location: Texas Tech
Posts: 95 Hartmann User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Ok I got the problem fixed... But how would I use list to make $variable=$array["info"]; throughout that many variables?
Thanks,

------------------
Hartmann

[This message has been edited by Hartmann (edited November 25, 2000).]

Reply With Quote
Reply

Viewing: Dev Shed ForumsOtherBeginner Programming > Problem... Please help.


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five "checkpoints" for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway