Jump to content

Image Gallery Help


chotchstar

Recommended Posts

MY CODE IS AT THE BOTTOM OF THE PAGE AND I AM USING phpMyAdmin 2.5.2 MySQL 3.23.56 running

 

Thank you all in advance,

I need to show a default image in the event that a dynamic image does not exist, or blank space would be great. Can anyone help.

 

Also could you let me know how to swap the main image from the thumbnails (click)and rotate the images round please. Simple gallery I guess but dynamic.

 

Kind Regards

 

JC

 

 

require 'listing.inc';

    if (array_key_exists("propID", $_GET))
        $propertyID = $_GET["propID"];
    else
        die("Sorry, cannot locate the details for that property");
    
    $query = "SELECT Price, PropertyID, Area, MainDescription, Parking, cFacility1, cFacility2, cFacility3, cFacility4, ";
    $query = $query . "cFacility5, cFacility6, cFacility9, PropertyName FROM listings WHERE PropertyID = '{$propertyID}';";

        // Connect to the server
    if (!($connection = @ mysql_connect($hostName, $userName, $password)))
        die("Cannot connect to server {$hostName}");

    // print '<div class="debug">Opening database</div>' . "\n";

        // Select the database
    if (!(mysql_select_db($databaseName, $connection)))
        showDbError();

    // print '<div class="debug">Issuing query</div>' . "\n";

    if (!($result = @ mysql_query($query, $connection)))
        showDbError();

    if (!($record = @ mysql_fetch_array($result)))
        die("Sorry, cannot locate the details for that property");

    $imageFile = "photos/pBRANCH_{$record["PropertyID"]}.jpg";
    $imageFile2 = "photos/bBRANCH_{$record["PropertyID"]}.jpg";


    print "  <tr>\n";
    print '        <td height="277" width="411">' . "\n";
    print '        <div align="center">' . "\n";
    print "            <img src=\"{$imageFile}\"";
    print ' border="0" height="225" width="340" alt="Property photo" />' . "\n";
    print "            <img src=\"{$imageFile}\"";
    print ' border="0" height="60" width="80" alt="Property photo" />' . "\n";
    print "            <img src=\"{$imageFile2}\"";
    print ' border="0" height="60" width="80" alt="" />' . "\n";
    print "            <img src=\"{$imageFile}\"";
    print ' border="0" height="60" width="80" alt="Property photo" />' . "\n";
    print "            <img src=\"{$imageFile}\"";
    print ' border="0" height="60" width="80" alt="Property photo" />' . "\n";
    print "        </div>    </td>\n";
    print '        <td valign="top" width="389"><p class="style5">
' . "\n";
    print '        <span class="style6"><span class="style8">Property</span><span class="style7">
Details</span></span>' . "\n";
    print '            

<strong>
Area:</strong>' . "\n";
    print "{$record["PropertyName"]}
<strong>Price:</strong><span class=\"style24\"> £{$record["Price"]} PCM</span>\n";
    print "        

</p></td></tr>\n";
    print '  <tr><td><table align="center" border="0" cellpadding="0" cellspacing="0" height="181" width="387">' . "\n";
    print "        <tr>\n";
    print '            <td bgcolor="#547cad" width="44"> </td>' . "\n";
    print '            <td bordercolor="#FFFFFF" bgcolor="#547cad" width="153"><span class="style17">&#8226; ';
    print "{$record["cFacility1"]}</span></td>\n";
    print '            <td bgcolor="#547cad" width="190"><span class="style17">&#8226; ';
    print "{$record["cFacility2"]}</span></td>\n";
    print "        </tr>\n";
    print "        <tr>\n";
    print '            <td bgcolor="#547cad" width="44"> </td>' . "\n";
    print '            <td bordercolor="#FFFFFF" bgcolor="#547cad" width="153"><span class="style17">&#8226; ';
    print "{$record["cFacility3"]}</span></td>\n";
    print '            <td bgcolor="#547cad" width="190"><span class="style17">&#8226; ';
    print "{$record["cFacility4"]}</span></td>\n";
    print "        </tr>\n";
    print "        <tr>\n";
    print '            <td bgcolor="#547cad" width="44"> </td>' . "\n";
    print '            <td bordercolor="#FFFFFF" bgcolor="#547cad" width="153"><span class="style17">&#8226; ';
    print "{$record["cFacility5"]}</span></td>\n";
    print '            <td bgcolor="#547cad" width="190"><span class="style17">&#8226; ';
    print "{$record["cFacility6"]}</span></td>\n";
    print "        </tr>\n";
    print "        <tr>\n";
    print '            <td bgcolor="#547cad" width="44"> </td>' . "\n";
    print '            <td bordercolor="#FFFFFF" bgcolor="#547cad" width="153"><span class="style17">&#8226; ';
    print "{$record["cFacility9"]}</span></td>\n";
    print '            <td bgcolor="#547cad" width="190"><span class="style17">&#8226; PARKING ';
    print "{$record["Parking"]}</span></td>\n";
    print "        </tr>\n";
    print "      </table></td>\n";
    print '        <td><p class="style5" align="justify"><strong>Main Description: </strong>

' . "\n";
    print "{$record["MainDescription"]}\n";
    print '  </p><p class="style9">   <a href="mailto:?subject=';
    print "{$record["PropertyName"]}";
    print '">REGISTER INTEREST [/url]</p></td>' . "\n";
    print "  </tr>\n";
?>
  

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.