/    Sign up×
Community /Pin to ProfileBookmark

Pictures not displaying

I am using PHP to output an HTML table but when it does the pictures refuses to display.

The php array $members[‘smallimg’] linkts to the .jpg file for example
[url]http://www.powerme.edu/me/images/faculty/70_70/gkumar_2012.jpg[/url]

[code=php]// If there is at least 1 member listed as Faculty, then we are going to get the header and table set up and ready to display each member.
if ($facultyfound == true)
{
$html .= ‘<h2><a name=”faculty”></a>Faculty</h2>’;

$html .= ‘<tr>’;
$html .= ‘<th width=”12&#37;”>Photo</th>’;
$html .= ‘<th width=”11%”>Name</th>’;
$html .= ‘<th width=”9%”>Title</th>’;
$html .= ‘<th width=”14%”>Contact</th>’;
$html .= ‘<th width=”54%”>Research</th>’;

$html .= ‘</tr>’;

for ($i = 0; $i < $size; $i++)
{
/*
While we are looping through the for loop, we check each node to see if that node’s information corresponds to the given department
shortname and that the member is Faculty. If that is true, then we display the necessary information about them. If the XML element
that normally contains information is actully empty, then it will just leave that space empty on the table as well in the corresponding
position.
*/
if ($members[$i][‘department’] == $thedepartment && $members[$i][‘facultytype’] == ‘Faculty’)
{
$html .= ‘<tr name=”‘.$members[$i][‘shortname’].'”>’;
$html .= ‘<td style=”vertical-align: middle; text-align: center;”><a name=”‘.$members[$i][‘shortname’].'”></a><img src=”‘.
$members[$i][‘smallimg’].'” width=”70″ height=”70″></td>’;
$html .= ‘<td style=”vertical-align: middle; text-align: center;”><a href=”http://www.power.edu/’.$deptURL.’/faculty/faculty.php?name=’.
$members[$i][‘firstname’].’ ‘.$members[$i][‘lastname’].'”>’.$members[$i][‘firstname’].’ ‘.$members[$i][‘lastname’].’, ‘.
$members[$i][‘credentials’].'</a></td>’;

$html .= ‘<td style=”vertical-align: middle; text-align: center;”>’.$members[$i][‘title’].'</td>’;

$html .= ‘</tr>’;
}
}

}[/code]

to post a comment
HTML

2 Comments(s)

Copy linkTweet thisAlerts:
@jaseAug 03.2012 — i think you will find its the url its too long rename it short

try that php is very critical ! it can disable it

iam sure its just that as i cant see any promblems in the code itself

other than that i dont know ?
Copy linkTweet thisAlerts:
@rtretheweyAug 03.2012 — The easy way to diagnose this is to load the page in your browser as any user would, and then examine the HTML for the page with the 'View Source' command. You'll almost certainly find that the 'src' attribute for your <img> tags is malformed - in particular, the directory path is probably incorrect.
×

Success!

Help @sirsaula spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...