proctk Posted November 22, 2006 Share Posted November 22, 2006 HI I'm trying to set the thum nails in the thumb nailes in a table, I'm having a hard time piecing the syntax together. can someone help me through it thatnak you[code=php:0]<table><tr><td><a HREF =\"getImage.php?<?php echo Photo_id=$row->Photo_id\; ?>"><IMG SRC=\"getImage.php?<?php echo Photo_id=$row->Photo_id\; ?>" width=75 Height=75 alt=<?php echo $row->name>; ?><br><a><?php echo $row->name; ?></a> <a href=\"deletephoto.php?<?php Photo_id=$row->Photo_id\; ?>" title='Delete Image'>Delete</a></div></td></tr></table>[/code] Link to comment https://forums.phpfreaks.com/topic/28142-table-php-syntax-help/ Share on other sites More sharing options...
virtuexru Posted November 22, 2006 Share Posted November 22, 2006 Usually I set variables before putting it in ... For example:$id = Photo_id=$row->Photo_id\;<a href="xxx?=<? echo $id; ?>">here</a>!and such.. I could be totally wrong but I'm gonna take a shot and try to help :-P. Link to comment https://forums.phpfreaks.com/topic/28142-table-php-syntax-help/#findComment-128767 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.