C
C
Chaly952019-08-15 10:32:41
PHP
Chaly95, 2019-08-15 10:32:41

Are there ready-made calendar libraries for telegram bot implemented in php?

Perhaps someone has come across ready-made solutions (libraries) like this https://github.com/grcanosa/telegram-calendar-keyboard written in php
I would be very grateful for any information

Answer the question

In order to leave comments, you need to log in

2 answer(s)
C
Chaly95, 2019-08-15
@chaly95

github.com/miserenkov/telegram-bot-calendar

M
Mikhail, 2018-01-10
@mak_ufo

Create a request pool once at application startup.
Here is an example with MySQL driver:

const { createPool } = require('mysql');
const pool  = createPool({
  connectionLimit : 10,
  host            : 'example.org',
  user            : 'bob',
  password        : 'secret',
  database        : 'my_db'
});

pool.query();

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question