Thin out the variable delivery face to face page
lima-city → Forum → Programmiersprachen → PHP, MySQL & .htaccess
ability
are
comes
date
error
everything
exit
face
lesen
moment
page
proper order
same
session
set
strike
there
- 
    
    <?php
 
 while($rs=mysql_fetch_array($conn)){
 
 ?>
 <tr bgcolor="#CCCCCC">
 <td><a href="test.php">
 <img src="image/dir.png" alt="Dir" width="20" height="20" border="0" class="icon_img dir" style="margin-left:10px; margin-top:0px " /></a></td>
 <td>
 <?php
 echo $rs["name"];
 
 ?> </td>
 <td>
 <?php
 echo $rs["Date"];
 ?> </td>
 </tr>
 <?php }
 mysql_close();
 exit;
 ?>
 </table>
 
 This may demonstrate a table , be in proper order: Picture bid , Name , date
 
 Strike picture bid moment , the rs how ability owes a line [\" name\ "]; Transfer the rs have tried, but to next page of face session [\" name\ "]; Be the same. -
- 
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden! lima-city: Gratis werbefreier Webspace für deine eigene Homepage 
- 
    
    I already found the next error.
 With the echo you must set still the quotation marks.
 
 <?php
 
 while($rs=mysql_fetch_array($conn)){
 
 ?>
 <tr bgcolor='#CCCCCC'>
 <td><a href='test.php'>
 <img src='image/dir.png' alt='Dir' width='20' height='20' border='0' class='icon_img dir' style='margin-left:10px; margin-top:0px ' /></a></td>
 <td>
 <?php
 echo "$rs['name']";
 
 ?> </td>
 <td>
 <?php
 echo "$rs['Date']";
 ?> </td>
 </tr>
 <?php }
 mysql_close();
 ?>
 </table>
- 
    
    Find out have resolved way): Thank everybody):
- 
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden! lima-city: Gratis werbefreier Webspace für deine eigene Homepage 
