How to print stuff in RTHML embedded code (equiv to php "echo")??

N

Namor

Hi I got a very noob question which i cant understand why i cant do
things like this......


eg... inside.
helloworld.rhtml

<p>
<%
puts "hello"
puts "world"
puts "something something"
%>
</p>


I know i can do this easily in php
<?php
echo "yes this works"
echo "testing 123"
echo "yes this works"
?>

Can someone help me?
 
N

Namor

hmmm
so means that for my program

helloworld.rhtml

<p>
<%= puts "hello" %>
<%= puts "world" %>
<%= puts "something something" %>
</p>

i have to do that? that is obviously way harder to code..
and if it was in between a loop or something just say for debugging..
i got to close the loop and then bracket it.. then come back again?
man
there must be an easier way???
 
N

Namor

A better example would be

if i was to do some debugging
it would have to be

<% @articles.map { |x| %>
<%= x.name %>
<% } %>

instead of
<%= @articles.map { |x| echo x.name } %> ???

wouldnt that be so difficult to type out and to read as well?
 
S

Sam Kong

Namor said:
Hi I got a very noob question which i cant understand why i cant do
things like this......


eg... inside.
helloworld.rhtml

<p>
<%
puts "hello"
puts "world"
puts "something something"
%>
</p>


I know i can do this easily in php
<?php
echo "yes this works"
echo "testing 123"
echo "yes this works"
?>

Can someone help me?

I'm not sure if this helps or even if it's good
I don't like to open and close with <%...%> repeatedly.
So I use the following.

<%
_erbout << "hello"
_erbout << "world"
_erbout << "something something"
%>

Sam
 
L

Logan Capaldo

hmmm
so means that for my program

helloworld.rhtml

<p>
<%= puts "hello" %>
<%= puts "world" %>
<%= puts "something something" %>
</p>

i have to do that? that is obviously way harder to code..
and if it was in between a loop or something just say for debugging..
i got to close the loop and then bracket it.. then come back again?
man
there must be an easier way???

Not exactly, you do this:
<p>
<%= "hello" %>
etc...
</p>

<%= is roughly analogous to "puts" or "print"
 
K

kwatch

ERB doesn't allow you to use 'print' or 'puts' in eRuby script.
You can use print statement if you use Erubis instead of ERB.
Erubis is an implementation of eRuby which has some advantages over
ERB.
http://rubyforge.org/projects/erubis/

For example, the following code is available with Eruby::printEruby
or Eruby::StdoutEruby class.

<p>
<%
print "hello\n"
print "world\n"
print "something something\n"
%>
</p>

See doc/users-guide.html in the archive.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,202
Messages
2,571,057
Members
47,667
Latest member
DaniloB294

Latest Threads

Top