有没有人知道一个干净的基于PHP的解决方案,可以使用FTP备份远程网站?
必须有:
会好的:
我需要这是基于PHP的,因为它将用于不允许使用标准GNU/Linux工具的共享主机包.
假设我Tutors有谁采取online webclasses和创造learning packs.双方online webclasses并learning packs可以通过额定students终于tutor's评级是对他的所有收视率的简单平均classes和packs.
这是我们当前Ratings表的表结构-
CREATE TABLE IF NOT EXISTS `Ratings` (
`id_rating` int(10) unsigned NOT NULL auto_increment,
`id_teacher` int(10) unsigned default NULL COMMENT 'the teacher who created the class/pack',
`id_lp` int(10) unsigned default NULL COMMENT 'the id of the learning pack',
`id_wc` int(10) NOT NULL default '0' COMMENT 'the id of the webclass',
`id_user` int(10) unsigned NOT NULL …Run Code Online (Sandbox Code Playgroud)