How to save twitter followers and number of tweets in a database.(php)

Recommended Answers

All 5 Replies

Which of the above words denotes your problem? followers - tweets - database - php - ?

i want to save number of followers in my database...??

So, what have you done already?

i want to save number of followers in my database,
i have an database with column, username and followers, suppose a user1 has 288 followers, i want that number "288" get saved in my database

user1|288

If your database is an sql database, use the insert command, like in

insert into users (username, followers) values ('user1',288);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.