Hi,
I have some code which stores the following text in a variable e.g
$var1 = " testing123 <% Response.Write(test) %> test ";
I want to be able to print this to screen but when i do
print $var1 the browser tries to execute the code thinking its ASP code so all i get is
testing123 test
instead of the desired output
testing123 <% Response.Write(test) %> test
does anyone know how to overcome this problem?
thanks for your time
jim
I have some code which stores the following text in a variable e.g
$var1 = " testing123 <% Response.Write(test) %> test ";
I want to be able to print this to screen but when i do
print $var1 the browser tries to execute the code thinking its ASP code so all i get is
testing123 test
instead of the desired output
testing123 <% Response.Write(test) %> test
does anyone know how to overcome this problem?
thanks for your time
jim