0
And I really like C# so I took a look at ASP, but I didn’t like it much. I’ve handled Nodejs and I like it a lot.
I wanted a language like PHP, where you can put the code inside the HTML and manipulate him.
Thus:
<div><?php echo "oi" ?></div>
So I was wondering if there’s another language that allows me to do this, I was wondering if there are any and if there are any alternatives to PHP
But what I look for in a Template Engine or a language, would be the possibility to put code even within the HTML type:
for(var i = 1; i <= 100; i++) echo ("<div>OI " + i + "</div>);
EDIT 1: As it was said, there are the templates (Thank you very much for the answer, helped, but not yet solved), If you can send good alternatives to Nodejs as well.
What’s wrong with Ode?
– rray
The most common ones used on the server are (in that order) PHP, Java web and Node.js, with a strong Node trend. You can still use javascript to manipulate the data in the client and use ajax requests to search and send data to the server. In this case it makes no difference what you use on the server.
– Cleiton Oliveira
No problem, I just didn’t like EJS very much, I wanted something more like how JSP and PHP work, like echo "<div>oi</div>"
– LeandroSQ