indexSuccess.php
카테고리 제목과 해당 카테고리의 요소를 표시하고 싶습니다. 이 내 두 개의 테이블이 있습니다카테고리 및 해당 카테고리의 요소 만 가져 오기 - symfony
SgpsCategories:
columns:
description: { type: string(255), notnull: true }
SgpsCertificats:
actAs: { Timestampable: ~ }
columns:
categories_id: { type: integer, notnull: true }
titre: { type: string(255), notnull: true }
type: { type: string(255), notnull: true }
taille: { type: string(50), notnull: true }
chemin: { type: string(255), notnull: true }
relations:
SgpsCategories: { onDelete: CASCADE, local: categories_id, foreign: id }
지금까지 나는 행동에 이런 짓을 :
public function executeIndex(sfWebRequest $request)
{
$this->categories = Doctrine_core::getTable('SgpsCategories')
->createQuery('b')
->execute();
$this->sgps_certificatss = Doctrine_Core::getTable('SgpsCertificats')
->createQuery('a')
->execute();
}
와 나는 indexSuccess.php에 이런 짓을 :
<?php foreach ($categories as $categorie): ?>
<div id="titulo-certificado"><?php echo $categorie->getDescription(); ?></div>
<?php foreach ($sgps_certificatss as $sgps_certificats): ?>
<?php echo $sgps_certificats->getTitre()."<br>";?>
<?php endforeach; ?>
<?php endforeach; ?>
내가 뭘 여기서 뭐라구? 감사합니다.