Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/10/2005, 15:44
Avatar de JuanRAPerez
JuanRAPerez
Colaborador
 
Fecha de Ingreso: octubre-2003
Mensajes: 2.393
Antigüedad: 21 años, 6 meses
Puntos: 27
hace esto

tu codigo dice

Código PHP:
        'Mostramos las notas de ese usuario 
        sql2 = "SELECT * FROM tabla_alumnas WHERE password='" & strPassword & "" 
        RS2.Open sql2, oConn, 1, 1 
         
        Response.Write("
Apellidos") 
        Response.Write(RS2.Fields("
apellidos") & "<BR>") 
        Response.Write("
Nombres") 
        Response.Write(RS2.Fields("
nombres") & "<BR>") 
        Response.Write("
Direcci&#243;n: ") 
        
Response.write(RS2.Fields("direccion")) & "<br>" 

         
        
RS2.Close 
ponelo asi

Código PHP:
        'Mostramos las notas de ese usuario 
        sql2 = "SELECT * FROM tabla_alumnas WHERE password='" & strPassword & "" 
        RS2.Open sql2, oConn, 1, 1 
       %>
    <table border="
1" width="600" id="table1">
        <tr>
            <td width="
86">Apellidos</td>
            <td><%=RS2.Fields("
apellidos")%></td>
        </tr>
        <tr>
            <td width="
86">Nombre</td>
            <td><%=RS2.Fields("
nombres")%></td>
        </tr>
        <tr>
            <td width="
86">Direccion</td>
            <td><%=RS2.Fields("
direccion")%></td>
        </tr>
    </table>
        <%      
        RS2.Close 
__________________
JuanRa Pérez
San Salvador, El Salvador