PostgreSQL Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsDatabasesPostgreSQL Help

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:
  #1  
Old February 7th, 2013, 07:53 AM
Haassg Haassg is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 1 Haassg User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 29 m 11 sec
Reputation Power: 0
Unhappy Trying to pull info/pics from a PG database using PHP

I am making a car rental website for school, and im trying to pull the cars info, pics, and videos from the schools database and be displayed on the web pages...
this is the code i currently have..what i am trying to do is load the vehicles page with car info using a dynamic table. However many items in the car table from the query should be displayed in a table...Its not working! althouh the query produces a result set..maybe someone can help me out....

<?php
//Connect to DB
require("MyConnection.php");
require("MyCode.php");
$obj = new MyConnection();
$obj->setConn();
$obj->displayValues();
$qObj = new MyCode();
$qObj->setConn( $obj->getConn());
//Run a Select Query to get items
$dynamicList ="";
$q = "SELECT
\"RatePerDay\",
\"MakeModel\",
\"TransmissionType\",
\"Horsepower\",
\"Engine\",
\"Description\",
\"CarImage\"

FROM
carrentaltest.\"CAR\"";

$qObj->setQuery($q);

$productCount = pg_num_rows($q);
if ($productCount >0){
while($row = pg_fetch_array($q)){
$rate = $row["RatePerDay"];
$vehicle_name = $row["MakeModel"];
$transmission = $row["TransmissionType"];
$horsepower = $row["Horsepower"];
$engine = $row["Engine"];
$description = $row["Description"];
$image = $row["CarImage"];
$dynamicList .= '<table width="618" border="2">
<tr>
<td width="274" valign="top"><a href="#"><img style="border:#0C0 1px solid" src="images/' . $image . '.jpg" width="272" height="202" alt="' . $vehicle_name . '" /></a></td>
<td width="326" valign="top">
<p>' . $vehicle_name . '</p>
<p>$' . $rate . '</p>
<p>' . $horsepower . '</p>
<p>' . $engine . '</p>
<p>' . $transmission . '</p>
<p>' . $description . '</p>
<p>&nbsp;</p></td>
</tr>
</table>';
}
} else{
$dynamicList = "We have no products in our store yet";
}
/*$qObj->displayTable();*/
pg_close();
?>

Reply With Quote
  #2  
Old February 7th, 2013, 08:39 AM
E-Oreo's Avatar
E-Oreo E-Oreo is offline
Lost in code
Click here for more information.
 
Join Date: Dec 2004
Posts: 7,944 E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)E-Oreo User rank is General 91st Grade (Above 100000 Reputation Level)  Folding Points: 945 Folding Title: Novice Folder
Time spent in forums: 2 Months 10 h 16 m 54 sec
Reputation Power: 7053
Clarify what you mean by not working.

I'm not too familiar with pg, but I'm not sure you're supposed to have double quotes around your field and table names.
__________________
PHP FAQ
How to program a basic, secure login system using PHP
Connect with me on LinkedIn


Quote:
Originally Posted by Spad
Ah USB, the only rectangular connector where you have to make 3 attempts before you get it the right way around

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesPostgreSQL Help > Trying to pull info/pics from a PG database using PHP

Developer Shed Advertisers and Affiliates



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

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


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap