#### Repository https://github.com/bcit-ci/CodeIgniter ### What Will I learn ? - You will learn how to configure and use Codeigniter Framework - You will learn how to get follower and following count from steemit API - You will learn how to animate the number using odometer - You will learn how to load live count every second ### Requirements - Basic knowledge about PHP, Javascript, HTML - Editor and browser - XAMPP or LAMPP ### Difficulty - basic ### Tutorial Content  This Live Follower / Following count is the same as the page for calculating yutube subcriber in real time. Here I am trying to use Codeigniter as a framework. For web page display I use bootstrap and to animate the numbers I use odometer. As for the data I take directly from the Steemit API. #### - Configure Codeigniter - Download Codeigniter on its official website https://codeigniter.com/download - Extract it in htdoc folder and rename it as follower  - Open it on your editor. Here I use Visual studio code  - Open Application > Config > config.php and search `$config['base_url']` then add the value with your base url  - Open Application > Config > autoload.php and search `$autoload['helper'] ` then add `url` as array value  - Open Application > Config > routes.php and search `$route['default_controller']` then change the value from `welcome` to `follower`. This is to set the default controller.  - Open Application > Controller then create new php file and rename it as `Follower.php` - Then add this code to the `Follower.php` file ``` <?php defined('BASEPATH') OR exit('No direct script access allowed'); class Follower extends CI_Controller { public function index() { $this->load->view('follower'); // to load the display page in application > view } } ``` - Now go to Application > View and create new php file as `follower.php`. Why ? because in Controller file you load the page with name is follower, so you should create with the same name. - Add html:5 component to `follower.php` and add some text in body then run on your browser to see the result ``` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Live Count</title> </head> <body> Hello Word </body> </html> ``` - If you see like this that mean the configuration is success  #### - Design The Display Page using Bootstrap - Add the CDN of Bootstrap in `head` component. For more detail you can read here : https://getbootstrap.com/docs/4.3/getting-started/introduction/ ``` <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <script src="http://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> ``` - Create a navbar to write the title ``` <nav class="navbar navbar-dark bg-dark"> <div class="container"> <a class="navbar-brand" href="#">Live Count </a> </div> </nav> ``` result :  - Create 2 columns using `card` class. One for follower and one other for following. ``` <div class="container"> <div class="row mt-5"> <div class="col-sm-6"> <div class="card text-center"> <div class="card-header"> Following count </div> <div class="card-body"> test </div> </div> </div> <div class="col-sm-6"> <div class="card text-center"> <div class="card-header"> Follower count </div> <div class="card-body"> test </div> </div> </div> </div> </div> ``` result :  #### - Add Odometer - To animate the number of result we use odometer. you can check it on GitHub : https://github.com/HubSpot/odometer - Odometer provide some theme you can see the detail on its document. Here I use `odometer-car-theme`  - back to visual studio code. Create new folder as `asset` in root. Then create 2 new folder again in asset. Its `js`and `css`  - create new js file as `odometer.js` in asset > js. - Copy all code from https://github.com/HubSpot/odometer/blob/master/odometer.js and paste it on your `odometer.js` in js folder  - Create new css file as `odometer-theme-car.css` in your css folder. - Copy all code from https://github.com/HubSpot/odometer/blob/master/themes/odometer-theme-car.css and paste it on your `odometer-theme-car.css` file.  - To Call odometer js dan css just go to application > view > follower.php add the following code in `head` element ``` <script src="<?php echo base_url()?>asset/js/odometer.js"></script> <link rel="stylesheet" href="<?php echo base_url();?>asset/css/odometer-theme-car.css"> ``` - To try the odometer just add this code in `card-body` class ``` <div id="following" class="odometer">1999</div> ``` - If you see like this that mean the odometer is run as possible  - Now add `<div id="follower" class="odometer"></div>` in `card-body` for follower and `<div id="following" class="odometer"></div>` for following like this  #### - Get live data from STEEM API - add steem js CDN in head element of `follower.php` file ``` <script src="//cdn.steemjs.com/lib/latest/steem.min.js"></script> ``` - Open `<script>` element under `</body>` then add `ready function ` like this  - Add the query from steem js to get the follower and following count. Then get the following and follower count and add it to html element with `follower` and `following` id. like this. ``` steem.api.getFollowCount('team2dev', function(err, result) { $('#following').html(result.following_count); $('#follower').html(result.follower_count); }); ``` result :  - To get live count in certain time, we need to use `setInterval` function like this : ``` $(document).ready(function(){ setInterval(function() { steem.api.getFollowCount('team2dev', function(err, result) { $('#following').html(result.following_count); $('#follower').html(result.follower_count); }); }, 1000); // 1000 is 1 second }) ``` - Now try to run your live count page in one browser and in other browser you try to follow and unfollow some account, you will see the live count here.  - Done, Now we have the some webpage for live follower and following count of steemit account. You can modify it as you want. #### Curriculum - [[Tutorial] How to Combine getAccountVotes and getContent in Steem-Js](https://steemit.com/utopian-io/@team2dev/tutorial-how-to-combine-getaccountvotes-and-getcontent-in-steem-js) - [how to create payment with SBD page on e-commerce site](https://steemit.com/utopian-io/@team2dev/how-to-create-payment-with-sbd-page-on-e-commerce-site) #### Proof of Work Down https://github.com/team2dev/follower
author | team2dev |
---|---|
permlink | webtutorial-1-how-to-create-live-follower-and-following-count-for-steemit-account-using-codeigniter |
category | utopian-io |
json_metadata | {"tags":["utopian-io","tutorials","steemjs","php","codeigniter"],"image":["https://cdn.steemitimages.com/DQmU3wkxP5H6u8wT9dNoZ9Zewe7egYX88Y9R6QCkk5AL8Z2/Screen%20Shot%202019-03-22%20at%2023.53.06.png","https://cdn.steemitimages.com/DQmRZqKujfE5SaNGgPTAizBuQNdRkng3zpJ2Q3xKqa26BLh/Screen%20Shot%202019-03-23%20at%2000.24.32.png","https://cdn.steemitimages.com/DQmVxKFJchUXWwLunfTTs7Qv5VqUiooez7LvxTts1F3MmFU/Screen%20Shot%202019-03-23%20at%2000.26.18.png","https://cdn.steemitimages.com/DQmawMeBsMXUQjzXW2WBmPSntQKvAv7Z7A2vD5dGx3jANen/Screen%20Shot%202019-03-23%20at%2000.31.30.png","https://cdn.steemitimages.com/DQma71cjhSdCHtRKM4gHgjvqQ7sqsVHrwJzsMh26araifZ6/Screen%20Shot%202019-03-23%20at%2000.40.46.png","https://cdn.steemitimages.com/DQmQq8Zc9JAD6HNx5fMbn9jGBDHnUmexGz4rysiCFQEGe7V/Screen%20Shot%202019-03-23%20at%2000.45.47.png","https://cdn.steemitimages.com/DQmTQbgrUJ6gsnid2ZA4ztpmkxr4PArdrjXNfkLUQoBSerU/Screen%20Shot%202019-03-23%20at%2000.55.59.png","https://cdn.steemitimages.com/DQmRRKTiSrmQc7TqbvizcwTurbxLc2vNf6FHZrMkT2tbNCG/Screen%20Shot%202019-03-23%20at%2001.04.04.png","https://cdn.steemitimages.com/DQmUFDD8JJnfmFRw67KMSGowqZyzyGztkSTdza43DuhWFhH/Screen%20Shot%202019-03-23%20at%2001.08.41.png","https://cdn.steemitimages.com/DQma5Jf2XEEspn6ZW2tHbt3GcRkUFtDJQzcSeMaNTYWo2gn/Screen%20Shot%202019-03-23%20at%2001.15.10.png","https://cdn.steemitimages.com/DQmVjwAvZNMfHpnZ4kfm9K8cx7AgRguhmBLseCvtqHfJ8Ld/Screen%20Shot%202019-03-23%20at%2001.24.31.png","https://cdn.steemitimages.com/DQmZnmjtGgUdqD9NKEzo6VdXzjMSnrJkL16HZKLgZsTrmSm/Screen%20Shot%202019-03-23%20at%2001.27.05.png","https://cdn.steemitimages.com/DQmSV7mN3yYijQ6AbEFRQPpAbffXWYodoCpb2yayBd8drzN/Screen%20Shot%202019-03-23%20at%2001.25.49.png","https://cdn.steemitimages.com/DQmUw5cRb6MQxYGGSTPq3yWNSjXCETEYMEZCMrHC2hiWkQj/Screen%20Shot%202019-03-23%20at%2001.32.18.png","https://cdn.steemitimages.com/DQmfVxcyvHxMQQiL3H5a4etW5SLz8a7V7oD9C4nhLbq7jvK/Screen%20Shot%202019-03-23%20at%2001.38.15.png","https://cdn.steemitimages.com/DQmV1rc1imFLsH2hMyd9R4LcHgLmDKCQPPk1wZWbPTWW41z/Screen%20Shot%202019-03-23%20at%2001.43.58.png","https://cdn.steemitimages.com/DQmR5xctb6Nokhk9zczBVb8gQZVxe8pj1Xzr9aByjvCuWoa/Screen%20Shot%202019-03-23%20at%2001.47.35.png","https://cdn.steemitimages.com/DQmR1LcvPGcBWbqqJ1rcigce9ibU7b53mrEa1XytbYvnyLe/Screen%20Shot%202019-03-23%20at%2001.56.05.png","https://cdn.steemitimages.com/DQmZSmPSctsooFe8HDCMjJyWaDSCaQSJBvY4uaoRC6etm78/Screen%20Shot%202019-03-23%20at%2001.55.14.png"],"links":["https://github.com/bcit-ci/CodeIgniter","https://codeigniter.com/download","https://getbootstrap.com/docs/4.3/getting-started/introduction/","https://github.com/HubSpot/odometer","https://github.com/HubSpot/odometer/blob/master/odometer.js","https://github.com/HubSpot/odometer/blob/master/themes/odometer-theme-car.css","https://steemit.com/utopian-io/@team2dev/tutorial-how-to-combine-getaccountvotes-and-getcontent-in-steem-js","https://steemit.com/utopian-io/@team2dev/how-to-create-payment-with-sbd-page-on-e-commerce-site","https://github.com/team2dev/follower"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-03-22 19:24:00 |
last_update | 2019-03-22 19:24:00 |
depth | 0 |
children | 6 |
last_payout | 2019-03-29 19:24:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.946 HBD |
curator_payout_value | 0.563 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,408 |
author_reputation | 4,772,044,454,305 |
root_title | "WebTutorial #1 : How to create live follower and following count for steemit account using Codeigniter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,752,730 |
net_rshares | 3,980,371,335,204 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 201,226,039,535 | 0.87% | ||
bowess | 0 | 100,166,547,316 | 50% | ||
rufans | 0 | 19,838,271,547 | 100% | ||
jga | 0 | 78,628,137 | 1.09% | ||
yehey | 0 | 2,940,599,797 | 10% | ||
pinoy | 0 | 113,310,967 | 10% | ||
codingdefined | 0 | 24,206,983,914 | 18.1% | ||
bachuslib | 0 | 19,110,972,809 | 100% | ||
sogata | 0 | 12,575,202,382 | 100% | ||
wahyudi98 | 0 | 552,308,502 | 100% | ||
leir | 0 | 2,010,184,260 | 50% | ||
dongkrak | 0 | 377,998,703 | 100% | ||
eastmael | 0 | 204,312,689 | 1.5% | ||
espoem | 0 | 26,784,396,059 | 14.26% | ||
steempulsa | 0 | 228,692,280 | 100% | ||
mcfarhat | 0 | 12,758,581,507 | 7.24% | ||
darut | 0 | 552,326,068 | 100% | ||
leumo | 0 | 215,092,452 | 100% | ||
utopian-io | 0 | 2,627,290,018,944 | 2.18% | ||
jaff8 | 0 | 40,617,843,006 | 18.1% | ||
bsi | 0 | 553,685,119 | 100% | ||
spiritabsolute | 0 | 2,630,866,019 | 100% | ||
lostmine27 | 0 | 11,508,131,974 | 25% | ||
amosbastian | 0 | 59,835,012,653 | 18.1% | ||
portugalcoin | 0 | 14,795,002,373 | 15% | ||
sargoon | 0 | 93,732,569 | 3% | ||
tobias-g | 0 | 123,190,678,679 | 38% | ||
minibot | 0 | 274,039,000 | 5% | ||
properfraction | 0 | 2,557,052,597 | 100% | ||
team2dev | 0 | 731,187,047 | 100% | ||
ulockblock | 0 | 20,540,993,371 | 6.7% | ||
cryptouno | 0 | 499,735,600 | 5% | ||
mops2e | 0 | 126,859,455 | 11.4% | ||
swapsteem | 0 | 88,752,402 | 1.09% | ||
steem-ua | 0 | 638,561,919,325 | 6% | ||
steemexpress | 0 | 1,559,421,369 | 2.77% | ||
bluesniper | 0 | 9,057,182,653 | 2.89% | ||
ascorphat | 0 | 1,918,772,125 | 2.5% |
Thank you for your contribution @team2dev. Below are the points we suggest for improvements to your tutorial: - Your tutorial is quite short for a good tutorial. We recommend you aim for capturing at least 2-3 concepts. - Your tutorial has very basic features that are already well explained in various tutorials. - We suggest that in the next tutorial you bring a more innovative subject/features to the open source community. - In code sections always put comments, it will help less experienced readers in the code. - The structure of your tutorial is a bit confusing. Try to improve the structure of your next tutorial. 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/8/3-1-3-2-2-4-3-4-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | portugalcoin |
---|---|
permlink | re-team2dev-webtutorial-1-how-to-create-live-follower-and-following-count-for-steemit-account-using-codeigniter-20190322t215952907z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["team2dev"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/3-1-3-2-2-4-3-4-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-03-22 21:59:54 |
last_update | 2019-03-22 21:59:54 |
depth | 1 |
children | 2 |
last_payout | 2019-03-29 21:59:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.759 HBD |
curator_payout_value | 2.471 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,080 |
author_reputation | 599,460,589,822,571 |
root_title | "WebTutorial #1 : How to create live follower and following count for steemit account using Codeigniter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,761,042 |
net_rshares | 15,885,202,032,285 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
codingdefined | 0 | 22,313,029,385 | 16.68% | ||
espoem | 0 | 28,261,992,419 | 15% | ||
utopian-io | 0 | 15,679,707,762,437 | 11.32% | ||
jaff8 | 0 | 37,425,325,342 | 16.68% | ||
emrebeyler | 0 | 6,499,824 | 0.01% | ||
lostmine27 | 0 | 11,450,522,418 | 25% | ||
amosbastian | 0 | 55,100,335,150 | 16.68% | ||
nenya | 0 | 1,556,985,749 | 80% | ||
sudefteri | 0 | 6,639,495,171 | 100% | ||
reazuliqbal | 0 | 13,899,191,730 | 8% | ||
amico | 0 | 1,002,579,259 | 0.55% | ||
statsexpert | 0 | 8,322,259,555 | 100% | ||
ulockblock | 0 | 11,645,080,291 | 3.81% | ||
nijn | 0 | 804,631,782 | 80% | ||
quenty | 0 | 1,950,449,360 | 60% | ||
ascorphat | 0 | 1,868,795,155 | 2.5% | ||
nimloth | 0 | 3,247,097,258 | 80% | ||
holydog | 0 | 0 | 4.44% |
Thank you sir. I will do all my best for next
author | team2dev |
---|---|
permlink | re-portugalcoin-re-team2dev-webtutorial-1-how-to-create-live-follower-and-following-count-for-steemit-account-using-codeigniter-20190323t024347764z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-23 02:43:48 |
last_update | 2019-03-23 02:43:48 |
depth | 2 |
children | 0 |
last_payout | 2019-03-30 02:43:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 4,772,044,454,305 |
root_title | "WebTutorial #1 : How to create live follower and following count for steemit account using Codeigniter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,772,235 |
net_rshares | 0 |
Thank you for your review, @portugalcoin! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-team2dev-webtutorial-1-how-to-create-live-follower-and-following-count-for-steemit-account-using-codeigniter-20190322t215952907z-20190325t060302z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-25 06:03:03 |
last_update | 2019-03-25 06:03:03 |
depth | 2 |
children | 0 |
last_payout | 2019-04-01 06:03:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 152,955,367,999,756 |
root_title | "WebTutorial #1 : How to create live follower and following count for steemit account using Codeigniter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,895,759 |
net_rshares | 0 |
#### Hi @team2dev! 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)**
author | steem-ua |
---|---|
permlink | re-webtutorial-1-how-to-create-live-follower-and-following-count-for-steemit-account-using-codeigniter-20190323t033732z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-03-23 03:37:33 |
last_update | 2019-03-23 03:37:33 |
depth | 1 |
children | 0 |
last_payout | 2019-03-30 03:37:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 287 |
author_reputation | 23,214,230,978,060 |
root_title | "WebTutorial #1 : How to create live follower and following count for steemit account using Codeigniter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,774,334 |
net_rshares | 47,072,768,228 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sbi6 | 0 | 47,072,768,228 | 22.49% |
Congratulations @team2dev! You received a personal award! <table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@team2dev/birthday1.png</td><td>Happy Birthday! - You are on the Steem blockchain for 1 year!</td></tr></table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@team2dev) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=team2dev)_</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steem/@steemitboard/3-years-on-steem-happy-birthday-the-distribution-of-commemorative-badges-has-begun"><img src="https://steemitimages.com/64x128/http://u.cubeupload.com/arcange/BG6u6k.png"></a></td><td><a href="https://steemit.com/steem/@steemitboard/3-years-on-steem-happy-birthday-the-distribution-of-commemorative-badges-has-begun">3 years on Steem - The distribution of commemorative badges has begun!</a></td></tr><tr><td><a href="https://steemit.com/steem/@steemitboard/happy-birthday-the-steem-blockchain-is-running-for-3-years"><img src="https://steemitimages.com/64x128/http://u.cubeupload.com/arcange/BG6u6k.png"></a></td><td><a href="https://steemit.com/steem/@steemitboard/happy-birthday-the-steem-blockchain-is-running-for-3-years">Happy Birthday! The Steem blockchain is running for 3 years.</a></td></tr></table> ###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
author | steemitboard |
---|---|
permlink | steemitboard-notify-team2dev-20190326t111320000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-03-26 11:13:21 |
last_update | 2019-03-26 11:13:21 |
depth | 1 |
children | 0 |
last_payout | 2019-04-02 11:13:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,543 |
author_reputation | 38,975,615,169,260 |
root_title | "WebTutorial #1 : How to create live follower and following count for steemit account using Codeigniter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,979,114 |
net_rshares | 0 |
Hey, @team2dev! **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>
author | utopian-io |
---|---|
permlink | re-webtutorial-1-how-to-create-live-follower-and-following-count-for-steemit-account-using-codeigniter-20190323t122722z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-23 12:27:24 |
last_update | 2019-03-23 12:27:24 |
depth | 1 |
children | 0 |
last_payout | 2019-03-30 12:27:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 590 |
author_reputation | 152,955,367,999,756 |
root_title | "WebTutorial #1 : How to create live follower and following count for steemit account using Codeigniter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,799,688 |
net_rshares | 0 |