Posts

Showing posts from 2014

Openclaw + 飞书🔥免费数字暖男封神 | Openclaw+feishu🔥free digital warm guy is awesome!

Image
古有 “肉屏风” 替主人遮风挡雨,今有 Openclaw 替你无怨干活,你只负责可爱就好😘!Openclaw 直接连上飞书,远程操作丝滑无卡顿,不用守在电脑前,你躺床追剧、吃零食,它就能帮你完成远程点点点,每天至少节省 1-2 小时重复操作!更绝的是,它能免费创建最多 10 个 agent(代理),像一群贴心工具人恋人,一个管飞书审批,一个管数据统计,一个管日常打招呼,各司其职还记忆不串台,绝不会把 “老板好烦” 发到老板群,翻车不存在的!零代码、零基础,小白点击 3 步就能上手,不用花一分钱,却能让飞书看起来像你有整支外包团队,打工人的数字暖男,谁用谁香💥 In the old days “meat screens” shielded their masters; today Openclaw grinds for you so you can just be cute😘! It hooks into Feishu seamlessly for remote control, no need to stay in front of the computer — you can binge-watch and eat snacks in bed while it handles all the clicks remotely, saving you 1-2 hours of repetitive work every day! Even better, it can freely create up to 10 agents, like a group of thoughtful tool-boyfriends — one for Feishu approvals, one for data statistics, one for daily greetings. Each does its own job with no memory mess, so “boss is annoying” never ends up in the boss group, no more mistakes! Zero code, zero basics, beginners can get started in 3 clicks, totally free, but it m...

Php session

Php session Introduce how to use session for checking login. Session 1: code (database file, login.php, checklogin.php, sessionCSS.css, conn.php, index.php) Session 2: concept thread Session 3: explanation Database ------------------------------------------------------------------------------------------------------- create database `sessionShop`; CREATE TABLE admin (     name varchar(64) NOT NULL default '',     password varchar(64) NOT NULL default '',     primary key(name) ); ------------------------------------------------------------------------------------------------------- login.php ------------------------------------------------------------------------------------------------------- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8...
Image
Although PHP is not fresh today, it is still there. And php paging is still useful. Let's have a look. There are three portions of this article. To begin with, the result code will be given. To the next part, it is the basic threads of how to do it. The last step is explaining my code. First thing first, to do paging, create database is basic. And then, the connection file conn.php, paging file paging1.php and css file pagingCSS.css . Named them anything you like, in this case, they named as listed. Create Database code: ------------------------------------------------------------------------------------------------------- create database `pagingDB`; create table tablePages (     id bigint(30) unsigned NOT NULL AUTO_INCREMENT,     name varchar(64) NOT NULL default '' UNIQUE,     phone varchar(3) NOT NULL default '',     primary key (id) ) INSERT INTO `tablePages`(`id`, `name`, `phone`) VALU...