Advertisement
Lucas123456789

Help PDO

Jun 30th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. <?php
  2. require_once("includes/functions.php");
  3. include_once("includes/header.php");
  4. $pdo = conectar();
  5. ?>
  6. <?php if(isset($_SESSION['logado'])){
  7. $sessMail = $_SESSION['email'];
  8.  
  9. $select = $pdo->prepare("SELECT * FROM membros WHERE email = ?");
  10. $select->bindParam(1, $sessMail);
  11. $select->execute();
  12.  
  13. while($res = $select->fetchAll(PDO::FETCH_OBJ)){
  14. $_SESSION['username']=$res->nome;
  15. $_SESSION['id_user']=$res->id;
  16.  
  17.  
  18. ?>
  19. <!DOCTYPE HTML>
  20. <html>
  21. <head>
  22. <link rel="shortcut icon" href="img/LOGO_03.png" type="image/x-icon"/>
  23. <title>Smush | <?php echo $res->nome; ?></title>
  24. <meta charset="utf-8" />
  25. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  26. <link rel="stylesheet" href="css/geral.css" />
  27. <link rel="stylesheet" href="css/logado.css" />
  28. <link rel="stylesheet" href="icones/styles.css" />
  29. <link rel="stylesheet" href="js/jquery-ui-1.11.4.custom/jquery-ui.css" />
  30. <link rel="stylesheet" href="js/jquery-ui-1.11.4.custom/jquery-ui.structure.min.css" />
  31. <link rel="stylesheet" href="js/jquery-ui-1.11.4.custom/jquery-ui.theme.min.css" />
  32. <link rel="stylesheet" href="notify/notify.style.css"/>
  33. <link rel="stylesheet" href="css/smodal.css"/>
  34. <script type="text/javascript" src="js/jquery.js"></script>
  35. <script type="text/javascript" src="js/jquery-ui-1.11.4.custom/jquery-ui.js"></script>
  36. <script type="text/javascript" src="js/functions.js"></script>
  37. <script src="notify/notify.js"></script>
  38. <?php echo '<script> var meu_id = '. $res->id .'</script>'; ?>
  39. <script>
  40. ...
  41. </script>
  42. </head>
  43. <body style="background:#ececec">
  44. <div id="dialogo" title="Sucesso!">
  45. <p></p>
  46. </div>
  47. <div id="tudo">
  48. <a href="javascript:logout();" id="logout" class="icon-log-out" title="Sair"></a>
  49. <?php include_once("menu.inc"); ?>
  50. ...
  51. resto do site
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement