diff --git a/en/reference/introduction.rst b/en/reference/introduction.rst index 9f42e2741..58a4ab77a 100644 --- a/en/reference/introduction.rst +++ b/en/reference/introduction.rst @@ -364,20 +364,18 @@ database. 5) Replace the contents of index.php with the following: -.. raw:: html +.. code-block:: php - - - createQuery('select u from Entities u where u.name = ?1'); - $q->setParameter(1, 'Garfield'); $garfield = - $q->getSingleResult(); + getName() . "!"; + ## PUT YOUR TEST CODE BELOW + + $q = $em->createQuery('select u from Entities u where u.name = ?1'); + $q->setParameter(1, 'Garfield'); $garfield = + $q->getSingleResult(); + + echo "Hello " . $garfield->getName() . "!"; You just created your first DQL query to retrieve the user with the