Forum Moderators: phranque
mydomain.com/"http://www.mydomain.com/dir/img.jpg"
some how there browser is rendering whats inside of an input text tag.
example input text tag on my site is
<input type="text" value="<a href="http://<?php echo $site_url . $site_page; ?>" target="_blank"><img src="http://<?php echo $site_url . $urlpath. $file; ?>"</a><br><a href="http://<?php echo $site_url . $site_page; ?>"><?php echo $cat_no_symbols; ?>Comments at <?php echo $site_name; ?></a><br>">
How can I use htaccess to make sure their browser does not render what's in the input tag?
I'm no PHP expert, but that code looks broken in several places. You might consider 'building' the entire <input> line, and then outputting all of it with a single php echo. To embed a quote in your string, escape it with a \ character, like this: \"
Jim