Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. $usuario =$_SESSION['usuario'];
  2.  
  3.  
  4. $mensaje_controllers = new Mensaje();
  5.  
  6. $result = $mensaje_controllers->verMensajesUsuario($usuario);
  7.  
  8. var_dump($result);
  9.  
  10. $array_datos = $result->fetch_array();
  11.  
  12. foreach ($array_datos as $mensaje) {
  13. echo $mensaje['titulo'];
  14. }
  15.  
  16. <!DOCTYPE html>
  17. <html lang="en">
  18. <head>
  19. <meta charset="UTF-8">
  20. <title>Inicio</title>
  21. <!-- IMPORT BOOTSRAP-CSS -->
  22. <?php include_once 'partials/bootstrap_css.php' ?>
  23. <!-- CSS 'FULL' -->
  24. <link rel="stylesheet" href="estilos/full.css">
  25. </head>
  26. <body>
  27.  
  28.  
  29. <div class="container">
  30. <?php include_once 'partials/menu.php'; ?>
  31.  
  32.  
  33. <div class="row">
  34. <div class="col">
  35. <!-- CUERPO -->
  36. <?php include_once "procesos/ver_mis_mensajes.php" ?>
  37. </div>
  38. </div>
  39.  
  40. </div>
  41.  
  42.  
  43.  
  44. <!-- IMPORT BOOTSRAP JQUERY -->
  45. <?php include_once 'partials/bootstrap_jquery.php' ?>
  46. </body>
  47. </html>
  48.  
  49. <?php
  50.  
  51. $miArray = array('buenRollo'=>10, 'malRolo'=>0, 'diversion'=>10);
  52. echo $miArray['diversion']; // muestra 10
  53.  
  54. $texto = "Esta es mi cadena de texto";
  55. echo $texto['buenRollo']; // esto causa error: illegal string offset error...
  56.  
  57. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement