Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
C0D4681466y@alexbrooklyn we don't do that here.
But yes, <?= $xyz; ?>
Although if you're using php5 (for what ever reason) you could get that down to
<% $xyz; %>
If you had short open tags enabled - I will find you and i will kill you with that .ini file if you do this. -
LuxARTS16636y@rEaL-jAsE I thought about adding a few js lines but will make the rant long. Also, I heard that phrase from a guy who think he is a full stack dev because he read the W3School's PHP and HTML examples.
-
NarkoCat2896y@alexbrooklyn If your are using laravel, you can get even shorter than that with {{ $user->name }}
Related Rants
"I'm a full stack dev."
<html>
<h1 style="color: red">
<?php echo("Hello world"); ?>
</h1>
</html>
...
rant
php
backend
dev
full stack
html
frontend