<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: mrwaccaff</title>
    <description>The latest articles on DEV Community by mrwaccaff (@mrwaccaff).</description>
    <link>https://dev.to/mrwaccaff</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F423438%2Fe89e669b-27bc-40e8-b96e-fddc8915dd53.png</url>
      <title>DEV Community: mrwaccaff</title>
      <link>https://dev.to/mrwaccaff</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mrwaccaff"/>
    <language>en</language>
    <item>
      <title>How to display a value in html with php without using the echo keyowrd using the short echo tag</title>
      <dc:creator>mrwaccaff</dc:creator>
      <pubDate>Mon, 06 Jul 2020 10:08:29 +0000</pubDate>
      <link>https://dev.to/mrwaccaff/how-to-display-a-value-in-html-with-php-without-using-the-echo-keyowrd-using-the-short-echo-tag-1772</link>
      <guid>https://dev.to/mrwaccaff/how-to-display-a-value-in-html-with-php-without-using-the-echo-keyowrd-using-the-short-echo-tag-1772</guid>
      <description>&lt;p&gt;I have been coding with php since 2015, I have always been curious to know how to output values on the webpage without using templates like twig or Laravel blade Template engine. I got my answer recently which is this tag that was disabled in earlier versions of php but made available from php 5.4 and above.&lt;br&gt;
This code&lt;br&gt;
&amp;lt;?php echo $name; ?&amp;gt; &lt;br&gt;
is the same thing as this&lt;br&gt;
&amp;lt;?= $name ?&amp;gt;&lt;br&gt;
This makes the code shorter and more readable. &lt;br&gt;
You can make changes to this in your php.ini using&lt;br&gt;
; short_open_tag&lt;br&gt;
;   Default Value: On&lt;br&gt;
Default value can either be on or off.&lt;br&gt;
It is enabled by default on Shared hosting services, so you don't have to worry about compatibility.&lt;br&gt;
I hope you find this helpful check back again for my posts&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
