Ruego por ayuda por favor.
o alguna idea de donde esta arrojando el error?
es mas o menos en la linea 417.
Código CSS:
Ver original
<div style='display:none'> <img src='img/basic/x.png' alt='' /> </div> <p align="center"> </p> </div> </div> <div class="right"> <div class="rightleft"> <div class="list"> <?php $con = mysql_connect("127.0.0.1", "root", ""); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("facebook", $con); $result = mysql_query("SELECT * FROM photos WHERE uploadedby='".$_SESSION['SESS_MEMBER_ID'] ."' ORDER BY RAND() LIMIT 5"); while($row = mysql_fetch_array($result)) { //echo "<img width=100 height=100 alt='Unable to View' src='" . $row["location"] . "'>"; echo '<a href=http://localhost/PHP-Login/photocomment.php?id=' . $row["photo_id"] . '>' . "<img width=80 height=80 alt='Unable to View' src='". $row["location"] . "'>" . '</a>'; echo" "; /* echo '<table width="100" border="0" cellspacing="0" cellpadding="0">'; echo'<tr>'; echo'<td>'; echo "<img width=100 height=100 alt='Unable to View' src='" . $row["location"] . "'>"; echo'</td>'; echo'</tr>'; echo'<tr>'; echo'<td>'; echo '<a href=http://localhost/PHP-Login/photolist.php?id=' . $row["photo_id"] . '>' . $row['caption'] . '</a>'; echo'</td>'; echo'</tr>'; echo'</table>';*/ } mysql_close($con); ?> </div> <div class="shoutout"> <form name="form1" method="post" action="save.php"> <div class="comment"> <textarea name="message" cols="45" rows="2" id="message" onclick="this.value='';">Que estas pensando?...........</textarea> </div> <input name="name" type="hidden" id="name" value="<?php echo $_SESSION['SESS_FIRST_NAME'];?>"/> <input name="poster" type="hidden" id="name" value="<?php echo $_SESSION['SESS_FIRST_NAME'];?>"/> <input name="name1" type="hidden" id="name" value="<?php echo $_SESSION['SESS_LAST_NAME'];?>"/> <div class="button"> <input type="submit" name="btnlog" value="Share" class="greenButton" /> </div> </form> </div> <div class="post"> <?php $con = mysql_connect("localhost","root",""); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("facebook", $con); $query = "SELECT *,UNIX_TIMESTAMP() - date_created AS TimeSpent FROM message WHERE poster='".$_SESSION['SESS_FIRST_NAME'] ."' ORDER BY messages_id DESC"; $result = mysql_query($query); while($row = mysql_fetch_assoc($result)) { //echo "POST by " . $_SESSION['SESS_FIRST_NAME'] . ": {$row['messages']} <br><br>"; //echo'<input type="text" name="firstname" value="'. $row['messages_id'] .'">'; echo '<div class="pic1">'; echo "<img width=50 height=50 alt='Unable to View' src='" . $row["picture"] . "'>"; echo'</div>'; echo '<div class="message">'; echo "Posted by {$row['user']}:<br></div><b><div class='postedby'>{$row['messages']}</b>"; echo '<form action="like.php" method="post">'; echo '<input type="hidden" name="com" value="'. $row['messages_id'] .'">'; echo '<input type="hidden" name="cam" value="'. $_SESSION['SESS_FIRST_NAME'] .'">'; echo '<input type="submit" Value="like">'; echo '</form>'; $result1 = mysql_query("SELECT * FROM bleh WHERE remarks='". $row['messages_id'] ."'"); if($row2 = mysql_fetch_array($result1)) { $numberOfRows = MYSQL_NUMROWS($result1); $numberoflikes=$numberOfRows; $numberoflikes1=$numberOfRows-1; if (($row2['remarksby'])==($_SESSION['SESS_FIRST_NAME']) || ($numberoflikes1 > 0)) { echo '<font color="blue"><b>' . 'You' . ' ' . '&' . ' ' . $numberoflikes1 . '</b></font>' . ' ' . 'People like this'; } elseif (($row2['remarksby'])==($_SESSION['SESS_FIRST_NAME'])&& ($numberoflikes1 == 0)) { echo '<font color="blue"><b>' . 'You' . '</b></font>' . ' ' . 'like this'; } elseif ($numberoflikes > 0) {