Answer the question
In order to leave comments, you need to log in
How to add time interval RedBeabPHP?
How to make a time interval in RedBeanPHP for example y + hour or + day or + day?
require "db.php";
$data = $_POST; // Переменная с массивом POST
if (isset($data['do_singup'])) // Преполагает, что кнопка SUMBIT была нажата
{
//Здесь происходит регистрация
$errors = array (); // переменная ERRORS с массивом
if ( trim($data['login']) == '') // здесь вписывается логин
{
$errors [] = 'Введите логин';
}
if( empty($errors))
{
$user = R::dispense('users'); // создание таблицы USERS
$user->login =$data['login']; //Занесение строки user $data переменная ['login'] - берем из HTML
$user ->join_date = date('Y-m-d H:i:s');
$user ->expires = date(('Y-m-d H:i:s'));
R::isoDateTime($user);
R::store($user);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question