Advertisement
mvsp

Aula 39 - index.php

Jul 6th, 2021
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.14 KB | None | 0 0
  1. <?php
  2. session_start();
  3.  
  4. $_SESSION['cor'] = "Verde";
  5. $_SESSION['carro'] = "Veloster";
  6.  
  7. echo $_SESSION['cor']."<br>".$_SESSION['carro'];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement