This topic is locked

Real Estate Template

9/15/2007 5:22:25 PM
PHPRunner General questions
J
joesturg author

Hello,
I am getting a error Undefined variable: pic when I click on View in the database.
I have removed the XXXXX info so you may see most of the error.
Technical information

Error type 8

Error description Undefined variable: pic

URL XXXXXX

Error file XXXXXX____include\tblresults_events.php

Error line 339

SQL query select `PropertyID`, `MLS_Number`, `House_Number`, `Street_Name`, `Apartment/Unit`, `City`, `State`, `Zip`, `Country`, `Price`, `Type`, `Style`, `Bedrooms`, `Bathrooms`, `Year`, `Foundation`, `Sq_Ft`, `Garage`, `Acres`, `Kitchen`, `Kitchen_Dimension1`, `Kitchen_Dimension2`, `Living_Room`, `Living_Room_Dimension1`, `Living_Room_Dimension2`, `Family_Room`, `Family_Room_Dimension1`, `Family_Room_Dimension2`, `Rec_Room`, `Rec_Room_Dimension1`, `Rec_Room_Dimension2`, `Study_Room`, `Study_Room_Dimension1`, `Study_Room_Dimension2`, `Sun_Room`, `Sun_Room_Dimension1`, `Sun_Room_Dimension2`, `Loft`, `Loft_Dimension1`, `Loft_Dimension2`, `Dinning_Room`, `Dinning_Room_Dimension1`, `Dinning_Room_Dimension2`, `Amusement_Room`, `Amusement_Room_Dimension1`, `Amusement_Room_Dimension2`, `Foyer`, `Foyer_Dimension1`, `Foyer_Dimension2`, `Office`, `Office_Dimension1`, `Office_Dimension2`, `Den`, `Den_Dimension1`, `Den_Dime
How do i fix this?
Thanks in advance for the support!!

J
joesturg author 9/17/2007

Answer:
To make your pages working proceed to the Events tab, find following code in the ViewOnLoad event:

------------------------------------------------------

else if($rstt["Photo9"]!="")

$pic=$rstt["Photo9"];
$smarty->assign("row00firstphoto_value",htmlspecialchars(AddLinkPrefix("Photo1",$pic)));

------------------------------------------------------

and replace it with this one:

------------------------------------------------------

else if($rstt["Photo9"]!="")

$pic=$rstt["Photo9"];

else $pic="";

$smarty->assign("row00firstphoto_value",htmlspecialchars(AddLinkPrefix("Photo1",$pic)));

------------------------------------------------------

Then rebuild your pages.
Best regards,

Jane Endaltseva