I'm following this codigofacilito tutorial on Youtube:
I try to do the form, but it does not appear on screen, and it is due to the fact that in the video they use a syntax very different from php, which I copy but it does not work in my xampp.
For example, in the video they do this:
<?= form_input($nombre) ?>
But if I do it like that, it does not work for me, so I'm forced to use the "old-fashioned" form of php, like this:
<?php echo form_input($nombre) ?>
That's how it works for me.
Over there I heard something about changing something in php.ini in order to use that summary syntax. The truth is that I'm not a fan of that summary syntax and I prefer php, but I want to be able to follow the examples of the videos to the letter or I'll get lost.
How do I activate those summary commands?