SELECT `m`.`V0`, `m`.`V1`, `mt`.`V0`, `mt`.`V1`, ...
FROM `members` AS `m`
LEFT JOIN `members_two` AS `mt` ON `mt`.`Owned` = `m`.`member_id`
WHERE `m`.`member_id` = :uid
LIMIT 1
include('simple_html_dom.php');
$html = file_get_html('file name here');
foreach ($html->find('div.mc span') as $span)
echo "{$span->plaintext}\n";
ALTER TABLE `comments`
ADD COLUMN `peoples_id` INT(255) NOT NULL AFTER `comment`,
ADD INDEX `peoples_id_idx` (`peoples_id` ASC);
ALTER TABLE `comments`
ADD CONSTRAINT `comments_peoples`
FOREIGN KEY (`peoples_id_fk`)
REFERENCES `peoples` (`id_people`)
ON DELETE NO ACTION
ON UPDATE NO ACTION;