Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
5answers
6k views

Is there any way to return HTML in a PHP function? (without building the return value as a string)

I have a PHP function that I'm using to output a standard block of HTML. It currently looks like this: <?php function TestBlockHTML ($replStr) { ?> <html> <body><h1> ...
1
vote
3answers
1k views

Short hand if statment

Is there a shorter version of the following: Using ASP.NET MVC, this is in the HTML page <%= IsTrue ? Html.Image("~/images/myimage.gif") : "" %> I know I'm only really writing 3 extra ...
0
votes
1answer
557 views

Display stored HTML inline in Rails 3

I'm kind of stuck on a problem and I need help getting around it. I'm developing a Rails 3 app that will allow users to interact with our email service provider via SOAP services. Users will be able ...