Search results

  1. E

    Explain this code pls

    you can use cookies to store data...and it will appear in the next page too.. <?php session_start(); setcookie ( 'name', 'vol7ron', time() + 1209600 ); ?> and on the next page you can get it by using $_COOKIE['name'] like this <?php session_start(); echo "Hi my name is".$_COOKIE['name'].", im...
Top