Posted by Jasper Bryant-Greene on 06/27/05 06:05
Kevin L'Huillier wrote:
> Could you copy the relevant code into a message? Seeing
> pseudo-script is different from seeing what you are actually
> doing.
Sure, either set the content-type to text/plain (to see the raw string
rather than have the browser interpret it as HTML), like this:
<?php
header('Content-Type: text/plain; charset=utf-8');
?>
or htmlspecialchars the string, like this:
<?php
print(htmlspecialchars($your_sql_string));
?>
Or just view source in your browser to see the raw string.
Jasper
[Back to original message]
|