Is this possible? If one file assigned to an ID...
Posted on
16th Feb 2014 07:03 pm by
admin
I have a page that lists property listings assigned to a specific user (a manage page), with brief text details and a picture.
Each of these listings has several images with it, that aren't seen unless they click on the listing itself to edit/view it.
I'd like to put a warning next to the listing on this manage page if one or more of the images assigned to that listing id are over a certain size. I'm not quite sure how to do this. When I put in the code, I get an error at the top giving an filesize stat warning, listing all of the files run together:
Code: Warning: filesize() [function.filesize]: stat failed for re_images/1263001649_offer_christmasstory.jpg|1263001038_offer_TEST.jpg in
Here is the code I've got that has the problem:
Code: if($rows > '0')
{
$ListingTable .= "<table align=center width=510 border=1 bordercolor=black frame=hsides rules=rows cellspacing=0>n";
while($a1 = mysql_fetch_array($r1))
{
$size = filesize('re_images/'.$a1[image]);
if( $size > 153600 )
{
echo '<p align=center><img src="images/warning.gif" border="0"></p>';
$warning="<font color=#FF0000 size=5>!!</font></b>";
}
$ListingTable .= "<tr onMouseOver="this.style.background='#E2E2E2'; this.style.cursor='hand'" onMouseOut="this.style.background='white'" onClick="window.open('info.php?id=$a1[ListingID]', '_top')">nt";
if($a1[PriorityLevel] > '1')
{
//get the priority level name
$qp = "select PriorityName from re2_priority where PriorityLevel = '$a1[PriorityLevel]' ";
$rp = mysql_query($qp) or die(mysql_error());
$ap = mysql_fetch_array($rp);
$sub = "<span class=RedLink><sup>$ap[0]</sup></span>";
}
else
{
$sub = "";
}
$ListingTable .= "nt<td width=15>";
if(!empty($a1[image]))
{
$ListingTable .= "<img src="myimages/camera.jpg" width=15 height=15>$warning";
}
$ListingTable .= "</td>nt";
$ListingTable .= "<td width=305>$a1[city], $a1[state], $a1[address] $sub</td>nt";
$ListingTable .= "<td width=80>$a1[rooms] br, $a1[bathrooms] ba";
$MyPrice = number_format($a1[Price], 2, ".", ",");
$ListingTable .= "</td>nt<td align=center width=100><b>$$MyPrice</td>n";
$ListingTable .= "</tr>n";
}
$ListingTable .= "</table>";
}
I've coded this on the next page that shows all of the image, and it worked good. This one, I just couldn't figure out how to tell the server to look in the folder to see if any of the image associated with an id are a certain size
No comments posted yet
Your Answer:
Login to answer
337
8
Other forums
Do While statement
hi guys,
This may sound trivial but im new to php and as part of an assignmenti have to const
FAGL_FC_TRANSLATION FAS52 New GL ECC 6.0
Hello,
The new program for Translating GL Balances (FAS 52) gives the option to use diffe
Need help with some php code :)
Hey! I'm quite new to this whole thing, so please don't fire me with shait on this one =D
I'm
Price in PR
Dear Experts,
Why we have to enter the price in the PR, and why there is no free goods indicato
SMTP server...
I recently found a tutorial online on SMTP authentification for sending emails from webpages, here i
Motivational Posters
Hello,
I wonder how can i do them in php. Are there any sample codes that you can show me?
random generation
hi
i need help with generating this
numbers from 1-12
i want to generate in ran
Looking for help reading a .txt or .ini file and outputting the info.
I have a file called Info.ini and It has the following info:
Code: [General]
Online=0
I wou
$variable = $variable
Hello
Sorry if this is a really simple question but I have run out of ideas. Is there a reall
List/Menu Box
On an edit page when you want something to select what a user has previously selected from the datab