create account

PHP Tutorial #21 The Session How To Create , Modify And Delete A Session by alexendre-maxim

View this thread on: hive.blogpeakd.comecency.com
· @alexendre-maxim ·
$30.08
PHP Tutorial #21 The Session How To Create , Modify And Delete A Session
<html>
<p><img src="https://cdn.steemitimages.com/DQmR2CdPgUAaypJwbE8QhahqDxrabLTM5fHq8ZjTPcVr2fg/bbva-open4u-herramientas-basicas-desarrolladores-php_1.jpg" width="2122" height="1415"/></p>
<p><a href="https://cdn.steemitimages.com/DQmR2CdPgUAaypJwbE8QhahqDxrabLTM5fHq8ZjTPcVr2fg/bbva-open4u-herramientas-basicas-desarrolladores-php_1.jpg">Image Source</a></p>
<h2>Repository</h2>
<p><a href="https://github.com/php/php-src">https://github.com/php/php-src</a> &nbsp;</p>
<h2>What Will I Learn?</h2>
<p>&nbsp;I will learn the session, the concept of a session where we can find &nbsp;it and why we use it , and how to create a session or how to save the &nbsp;information about a user , how to modify these session and delete it.&nbsp;</p>
<ul>
  <li>What's the session.</li>
  <li>How to create a session.</li>
  <li>How to modify a session.</li>
  <li>How to delete a session.</li>
</ul>
<h2>Requirements</h2>
<h5>System Requirements:</h5>
<ul>
  <li>Server support PHP , Xampp or Wamp for example</li>
  <li>An IDE like Sublime text.</li>
  <li>&nbsp;Browser (Chrome for example)&nbsp;&nbsp;</li>
</ul>
<h5>OS Support for PHP</h5>
<ul>
  <li>Windows</li>
  <li>macOS</li>
  <li>Linux</li>
</ul>
<h4>Required Knowledge</h4>
<ul>
  <li>HTML language</li>
  <li>CSS language</li>
</ul>
<h2>Difficulty</h2>
<ul>
  <li>Basic</li>
</ul>
<h2>Description</h2>
<p>&nbsp;In this tutorial we will learn the sessions, how the websites remembers the name or other information about the user who connects in the site.&nbsp;</p>
<p>&nbsp;When you create a website, you need to quickly store and display information about your users to distinguish them or assign them rights of use. The main problem with languages like PHP is that variables have only a limited lifetime to the script that calls them.</p>
<p>&nbsp;To preserve data from page to page, you must pass them through the GET or POST method .This can be binding if we have a lot of data to keep or we do not want to show them to the customer.&nbsp;</p>
<p>&nbsp;Fortunately, we can use a mechanism to store these variables and retrieve them later, there are two ways of storing information, they are both in the form of a file recorded on the disc :&nbsp;</p>
<p>- The cookie that will be on the client side.</p>
<p>- The session that will be server side. &nbsp;</p>
<h3>What's a session ?</h3>
<p>&nbsp;A session is a technical mechanism for temporarily saving information about a user to the server, this system has been invented to overcome the fact that the HTTP protocol operates in offline mode.&nbsp;</p>
<p>&nbsp;Each time a new session is opened the user is assigned a session identifier, This identifier can be transmitted either in GET, POST or Cookie depending on the configuration of the server.&nbsp;</p>
<p>&nbsp;The information will be transferred from page to page by the server and not by the client, In this way the security and integrity of the data are improved and their availability throughout the session.&nbsp;</p>
<p>&nbsp;A session can contain any type of data (number, string and even an array ), unlike a database or file system the session keeps the information for a few minutes, this time depends on the server configuration but is usually set to 24 minutes by default. The server creates files stored in a particular directory.</p>
<h3>Create a session</h3>
<p>&nbsp;PHP introduces a unique natively function to start or continue a session, this is <code>session_start()</code>, this function doesn't take a parameter and always returns true, it checks the status of the current session.&nbsp;</p>
<p>&nbsp;If it doesn't exist the server creates it, else it pursues it in the case of use of sessions with cookies, the function <code>session_start()</code> must be called before sending to the browser.&nbsp;</p>
<p>&nbsp;When a session is created it's empty by default it has no interest, it must therefore be assigned values to save temporarily, for that the PHP language sets up the <code>$_SESSION</code> superglobal array.&nbsp;</p>
<p>The array <code>$_SESSION</code> can be indexed numerically but also associatively, in general the second is preferred in order to be able to give meaningful and meaningful names of session variables.&nbsp;</p>
<p>&nbsp;The example that I want to do is a login page after that I will allow the user to publish something with his username, we will not ask in each task the username of the user, for example in facebook we connect and after we can publish, comment, discuss .. etc with our username, facebook doesn't need to ask each time to enter the username just the first time and will save it using the session.</p>
<p><img src="https://cdn.steemitimages.com/DQmYYcjDHdsZ9TChsvfSM2mw2yXYzXWoVK476tuZxmo7iTo/capture-20190308-113649.png" width="891" height="195"/></p>
<p>I have created a form with <code>action="SessionLogin.php"</code> and the <code>method="post"</code> I will send the values to the SessionLogin page</p>
<p>&nbsp;<img src="https://cdn.steemitimages.com/DQmcu8Z8WUeuvCE4WjAHH7o7QfgLE2rVzbSjhMw8y1dpB4e/capture-20190308-114505.png" width="532" height="163"/></p>
<p>I will get the username and the password in the next page to create the session</p>
<p><img src="https://cdn.steemitimages.com/DQmRz7EQMvJ13b1z5bmZQeo8Zyq85Ri5dYQZcgaJYxD7RTT/capture-20190308-113723.png" width="778" height="261"/></p>
<p>I will get the <code>$username</code> and <code>$password</code> then I will create the session ' <code>$_SESSION['username'] = $username</code> ' in the array <code>$_SESSION</code> I will add the key username and the value that the user entered, the <code>header("Location: publish.php")</code> will redirect the user to the <code>publish.php</code> page</p>
<p><img src="https://cdn.steemitimages.com/DQmTB9knPcpr8f96WqBR4gzYGs1EiCp58r6EHXXZWNB3Azy/capture-20190308-114205.png" width="1019" height="625"/></p>
<p>In the publish.php page I have two forms a form for logout and a form to publish an article with a title and content , the idea that I will get the title and content and also the username using the SESSION , this is the result</p>
<p><img src="https://cdn.steemitimages.com/DQmYanFjsJwz6mXHze3Br3N2VE8QPn9AJD4EtZrfXJtRyH4/capture-20190308-114545.png" width="536" height="481"/></p>
<h3>Modify a session</h3>
<p>&nbsp;To modify a session you need to replace the value of the key saved in the <code>$_SESSION</code> array with another value that the user entred using the input for example.</p>
<p>I have entered the username " Alexendre " I will just change it because am the same user I will change it to any other username and the result in the publish page will be " Maxim " for example.</p>
<p><img src="https://cdn.steemitimages.com/DQmSETXNgeW5kYAe9unAqonjasD6N39NjifrCQaXEuqNwP5/capture-20190308-132515.png" width="705" height="149"/></p>
<p><img src="https://cdn.steemitimages.com/DQmVMnFHP97fkYmP88ck3tQwW66c2pmaXvPiDm5ApDrQoPG/capture-20190308-132614.png" width="511" height="478"/></p>
<h3>Destroy a session &nbsp;</h3>
<p>&nbsp;As mentioned above the server itself destroys the session after a certain time if the session hasn't been renewed.&nbsp;</p>
<p>&nbsp;On the other hand it's possible to force its destruction by means of the function <code>session_destroy()</code>, this function allows for example webmasters to propose a logout page to members logged in their personal space, for that you need to use this function to delete or to destroy the session created . &nbsp;</p>
<p>I will use logout to delete the session of the user and to do that I need to go to another page and use the <code>unset()</code> and <code>destroy()</code> methods</p>
<p><img src="https://cdn.steemitimages.com/DQmaAJY3SqeG4qM5uvq6nwaNJy6u9HrTmAZeHpEv7Vwqozy/capture-20190308-114311.png" width="372" height="240"/></p>
<p>I will firstly start the session then the methods unset and destroy and I will print the array and " You have disconnected "</p>
<p><img src="https://cdn.steemitimages.com/DQmX1F24iXfmiCjXzNxuveq6F4SPfa1dyoBMDBHuQLtAKfg/capture-20190308-132947.png" width="537" height="84"/></p>
<p>And if we open the publish page without session ( we have deleted the session ) , this is the result</p>
<p><img src="https://cdn.steemitimages.com/DQmbjBFoi8t4h6xmUQKSnLXag6pBYL8b4TRHhkwcjR7pRZq/capture-20190308-133035.png" width="1061" height="546"/></p>
<h2>Video Tutorial&nbsp;&nbsp;</h2>
<p>https://www.youtube.com/watch?v=PGiVOpc35w0&amp;feature=youtu.be</p>
<h2>Curriculum</h2>
<ul>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-11-string-methods-addslaches-chr-chop-and-chunksplite">PHP Tutorial #11 String Methods ( Addslaches, Chr, Chop and Chunk_splite )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-12-string-methods-bin2hex-countchars-explode-and-hex2bin">PHP Tutorial #12 String Methods ( Bin2Hex, Count_Chars, Explode and Hex2Bin )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-13-string-methods-implode-join-lcfirst-ltrim-and-fprintf">PHP Tutorial #13 String Methods (Implode, Join, Lcfirst, Ltrim and Fprintf )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-14-string-methods-md5file-md5-nl2br-and-addcslaches">PHP Tutorial #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-15-string-methods-numberformat-ord-parsestr-print-and-printf">PHP Tutorial #15 String Methods (Number_Format, Ord, Parse_Str, Print and Printf )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-16-string-methods-quotemeta-rtrim-sha1file-and-sha1">PHP Tutorial #16 String Methods (QuoteMeta, Rtrim , Sha1_file and Sha1 )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-17-mathematical-methods-abs-acos-acosh-and-asin">PHP Tutorial #17 Mathematical Methods (Abs, Acos , Acosh and Asin )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-18-get-and-post-methods-and-usdserver-variables">PHP Tutorial #18 ( GET and POST ) Methods and $_SERVER Variables</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-19-include-and-require-globals-variable-request-and-usdserver-variables">PHP Tutorial #19 ( Include and Require ) , Globals Variable, Request and $_SERVER Variables</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-20-the-cookie-how-to-create-modify-and-delete-a-cookie">PHP Tutorial #20 The Cookie How To Create , Modify And Delete A Cookie</a></li>
</ul>
<h2>Proof of Work Done</h2>
<p>https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/login.html</p>
<p>https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/SessionLogin.php</p>
<p>https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/publish.php</p>
<p>https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/logout.php</p>
</html>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 62 others
properties (23)
authoralexendre-maxim
permlinkphp-tutorial-21-the-session-how-to-create-modify-and-delete-a-session
categoryutopian-io
json_metadata{"tags":["utopian-io","video-tutorials","video","programming"],"image":["https://cdn.steemitimages.com/DQmR2CdPgUAaypJwbE8QhahqDxrabLTM5fHq8ZjTPcVr2fg/bbva-open4u-herramientas-basicas-desarrolladores-php_1.jpg","https://cdn.steemitimages.com/DQmYYcjDHdsZ9TChsvfSM2mw2yXYzXWoVK476tuZxmo7iTo/capture-20190308-113649.png","https://cdn.steemitimages.com/DQmcu8Z8WUeuvCE4WjAHH7o7QfgLE2rVzbSjhMw8y1dpB4e/capture-20190308-114505.png","https://cdn.steemitimages.com/DQmRz7EQMvJ13b1z5bmZQeo8Zyq85Ri5dYQZcgaJYxD7RTT/capture-20190308-113723.png","https://cdn.steemitimages.com/DQmTB9knPcpr8f96WqBR4gzYGs1EiCp58r6EHXXZWNB3Azy/capture-20190308-114205.png","https://cdn.steemitimages.com/DQmYanFjsJwz6mXHze3Br3N2VE8QPn9AJD4EtZrfXJtRyH4/capture-20190308-114545.png","https://cdn.steemitimages.com/DQmSETXNgeW5kYAe9unAqonjasD6N39NjifrCQaXEuqNwP5/capture-20190308-132515.png","https://cdn.steemitimages.com/DQmVMnFHP97fkYmP88ck3tQwW66c2pmaXvPiDm5ApDrQoPG/capture-20190308-132614.png","https://cdn.steemitimages.com/DQmaAJY3SqeG4qM5uvq6nwaNJy6u9HrTmAZeHpEv7Vwqozy/capture-20190308-114311.png","https://cdn.steemitimages.com/DQmX1F24iXfmiCjXzNxuveq6F4SPfa1dyoBMDBHuQLtAKfg/capture-20190308-132947.png","https://cdn.steemitimages.com/DQmbjBFoi8t4h6xmUQKSnLXag6pBYL8b4TRHhkwcjR7pRZq/capture-20190308-133035.png","https://img.youtube.com/vi/PGiVOpc35w0/0.jpg"],"links":["https://cdn.steemitimages.com/DQmR2CdPgUAaypJwbE8QhahqDxrabLTM5fHq8ZjTPcVr2fg/bbva-open4u-herramientas-basicas-desarrolladores-php_1.jpg","https://github.com/php/php-src","https://www.youtube.com/watch?v=PGiVOpc35w0&feature=youtu.be","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-11-string-methods-addslaches-chr-chop-and-chunksplite","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-12-string-methods-bin2hex-countchars-explode-and-hex2bin","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-13-string-methods-implode-join-lcfirst-ltrim-and-fprintf","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-14-string-methods-md5file-md5-nl2br-and-addcslaches","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-15-string-methods-numberformat-ord-parsestr-print-and-printf","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-16-string-methods-quotemeta-rtrim-sha1file-and-sha1","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-17-mathematical-methods-abs-acos-acosh-and-asin","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-18-get-and-post-methods-and-usdserver-variables","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-19-include-and-require-globals-variable-request-and-usdserver-variables","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-20-the-cookie-how-to-create-modify-and-delete-a-cookie","https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/login.html","https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/SessionLogin.php","https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/publish.php","https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/logout.php"],"app":"steemit/0.1","format":"html"}
created2019-03-08 22:20:54
last_update2019-03-08 22:20:54
depth0
children11
last_payout2019-03-15 22:20:54
cashout_time1969-12-31 23:59:59
total_payout_value22.890 HBD
curator_payout_value7.191 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,982
author_reputation18,071,828,077,109
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,938,789
net_rshares41,012,157,579,864
author_curate_reward""
vote details (126)
@crypto.talk ·
Hello alexendre-maxim, welcome to Partiko, an amazing community for crypto lovers! Here, you will find cool people to connect with, and interesting articles to read!

You can also earn Partiko Points by engaging with people and bringing new people in. And you can convert them into crypto! How cool is that!

Hopefully you will have a lot of fun using Partiko! And never hesitate to reach out to me when you have questions!

Cheers,
crypto.talk
Creator of Partiko
properties (22)
authorcrypto.talk
permlinkcrypto-talk-re-alexendre-maxim-php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session-20190309t152130774z
categoryutopian-io
json_metadata{"app":"partiko"}
created2019-03-09 15:21:30
last_update2019-03-09 15:21:30
depth1
children1
last_payout2019-03-16 15:21:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length463
author_reputation5,672,582,596,884
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,969,903
net_rshares0
@alexendre-maxim ·
Thank you @crypto.talk
properties (22)
authoralexendre-maxim
permlinkre-cryptotalk-crypto-talk-re-alexendre-maxim-php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session-20190311t124305467z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["crypto.talk"],"app":"steemit/0.1"}
created2019-03-11 12:42:42
last_update2019-03-11 12:42:42
depth2
children0
last_payout2019-03-18 12:42:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation18,071,828,077,109
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,066,800
net_rshares0
@rosatravels ·
$11.40
Hi @alexendre-maxim

I can see an overall improvement in your  tutorial in terms of outline, the structure and also the presentation.

You are putting emphasis in diction and therefore making your presentation clear and easy to understand.  This is very important especially when English is your second language.

So far, this is the best video tutorial you have submitted.

Rosa

P.S.  I also sent a DM to your discord.  Can you check?


Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/9/2-1-2-2-2-2-1-1-3-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , ,
properties (23)
authorrosatravels
permlinkre-alexendre-maxim-php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session-20190309t140220678z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["alexendre-maxim"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/9/2-1-2-2-2-2-1-1-3-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-03-09 14:02:21
last_update2019-03-09 14:02:21
depth1
children2
last_payout2019-03-16 14:02:21
cashout_time1969-12-31 23:59:59
total_payout_value8.656 HBD
curator_payout_value2.745 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length891
author_reputation422,827,447,688,168
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,966,542
net_rshares15,950,584,324,124
author_curate_reward""
vote details (10)
@alexendre-maxim ·
Thank you @rosatravels , I am very happy to see that .
properties (22)
authoralexendre-maxim
permlinkre-rosatravels-re-alexendre-maxim-php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session-20190311t124659967z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["rosatravels"],"app":"steemit/0.1"}
created2019-03-11 12:46:36
last_update2019-03-11 12:46:36
depth2
children0
last_payout2019-03-18 12:46:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation18,071,828,077,109
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,067,014
net_rshares0
@utopian-io ·
Thank you for your review, @rosatravels! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-alexendre-maxim-php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session-20190309t140220678z-20190312t035609z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-03-12 03:56:12
last_update2019-03-12 03:56:12
depth2
children0
last_payout2019-03-19 03:56:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation152,955,367,999,756
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,111,522
net_rshares0
@steem-ua ·
#### Hi @alexendre-maxim!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session-20190309t140555z
categoryutopian-io
json_metadata"{"app": "beem/0.20.18"}"
created2019-03-09 14:05:57
last_update2019-03-09 14:05:57
depth1
children1
last_payout2019-03-16 14:05:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length294
author_reputation23,214,230,978,060
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,966,677
net_rshares0
@alexendre-maxim ·
Thank you @steem-ua
properties (22)
authoralexendre-maxim
permlinkre-steem-ua-re-php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session-20190309t140555z-20190311t124245610z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["steem-ua"],"app":"steemit/0.1"}
created2019-03-11 12:42:21
last_update2019-03-11 12:42:21
depth2
children0
last_payout2019-03-18 12:42:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation18,071,828,077,109
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,066,780
net_rshares0
@steem-ua ·
#### Hi @alexendre-maxim!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session-20190309t144048z
categoryutopian-io
json_metadata"{"app": "beem/0.20.18"}"
created2019-03-09 14:40:51
last_update2019-03-09 14:40:51
depth1
children1
last_payout2019-03-16 14:40:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length294
author_reputation23,214,230,978,060
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,968,104
net_rshares0
@alexendre-maxim ·
Thanks
properties (22)
authoralexendre-maxim
permlinkre-steem-ua-re-php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session-20190309t144048z-20190311t124329992z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-03-11 12:43:06
last_update2019-03-11 12:43:06
depth2
children0
last_payout2019-03-18 12:43:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation18,071,828,077,109
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,066,820
net_rshares0
@utopian-io ·
Hey, @alexendre-maxim!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
authorutopian-io
permlinkre-php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session-20190310t023921z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-03-10 02:39:21
last_update2019-03-10 02:39:21
depth1
children1
last_payout2019-03-17 02:39:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length597
author_reputation152,955,367,999,756
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,991,197
net_rshares0
@alexendre-maxim ·
Thank you
properties (22)
authoralexendre-maxim
permlinkre-utopian-io-re-php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session-20190310t023921z-20190311t124318002z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-03-11 12:42:54
last_update2019-03-11 12:42:54
depth2
children0
last_payout2019-03-18 12:42:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation18,071,828,077,109
root_title"PHP Tutorial #21 The Session How To Create , Modify And Delete A Session"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,066,808
net_rshares0