<?php
$command_list = array();
class Command {
public $command_list;
function __construct($keys = array(), $description = '') {
$this->__keys = $keys;
$this->description = $description;
$command_list[] = array($this->__keys, $this->description);
}
//тут и возникла проблема
function process() {
}
}
<form>
<input type="text" id="add_group" name="add_group" placeholder="Введите ID группы" style="width: 150px; height: 35px;">
<input type="submit" value="Подключить" style="width: 120px; height: 35px;"
onclick="window.open ('https://oauth.vk.com/authorize?client_id=5961737&display=page&redirect_uri=http://vhost25708.cpsite.ru/lk/grant.php&scope=manage,messages&response_type=code&group_ids=' + document.getElementById ('add_group').value, '_blank')">
</form>