Go Back   HTMLCenter Web Development Forums > Web Design and Development > Programming and Scripting

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
  #1 (permalink)  
Old 01-14-2002, 03:40 AM
tthurgo's Avatar
Moderator
 
Join Date: Jan 2002
Location: Lebanon, PA
Posts: 357
Reading data from MySQL

Hi,

I have a little problem with my code. I am trying to read data from a MySQL database using PHP. My code is as follows:

PHP Code:
$query "SELECT products.id,products.name,products.desc,addons.parent,addons.id,addons.name,addons.desc FROM products WHERE cat=cars LEFT JOIN addons ON addons.parent=products.id ORDER BY products.name";

$raw=MYSQL_QUERY($query);

while(
$arr=MYSQL_FETCH_ARRAY($raw)){

echo 
$arr["addons.id"]." ".$arr["addons.name"]." ".$arr["addons.desc"]."<br>";



This is what I use, I get no output though.

Tom
Reply With Quote

  #2 (permalink)  
Old 01-14-2002, 03:46 AM
Till's Avatar
Administrator
 
Join Date: Jan 2002
Location: Berlin, Germany
Posts: 1,453
Hi Tom!

Well, your problem could be of various reasons.

Is the connection to your database open?

Do you actually "select" anything? Use this code snippet to test your query (after $raw=MYSQL_QUERY($query)):

PHP Code:
if(!$raw)
echo 
"error: ".mysql_error(); 
And this, to see if you got any results:

PHP Code:
if(MYSQL_NUM_ROWS($raw) > 0)
echo 
"results"
Next one. I encountered some problems when using a "dotted" fields in an array as well, try this:

PHP Code:
$query="SELECT products.id AS ProductID FROM products";

$raw=...

$arr=...

echo 
"Product ID: ".$arr["ProductID"]; 
Just an example, but I guess you get the drift.

Hope that helps!

--
Till
Reply With Quote
  #3 (permalink)  
Old 01-14-2002, 05:56 AM
tthurgo's Avatar
Moderator
 
Join Date: Jan 2002
Location: Lebanon, PA
Posts: 357
Was the dotted array. Thanks for your help!

Tom
Reply With Quote
  #4 (permalink)  
Old 01-17-2002, 04:06 AM
Till's Avatar
Administrator
 
Join Date: Jan 2002
Location: Berlin, Germany
Posts: 1,453
You are very welcome!
Reply With Quote
Reply


Thread Tools
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
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT -5. The time now is 10:13 PM.

 
KickApps
Clicky Web Analytics


Subscribe to our feed | add to myYahoo!

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0
© 1997-2007 HTMLCenter