Posted by albert on 08/27/07 06:10
Hello,
I'm generating an image with the GD lib.
As I need to send parameters to the image, this is my code :
<?
$MyText = "this is my text" ;
?>
<img src="MyImg.php?text=<?=$MyText ?>" ... />
In this case, there is no pb. I get the param with $_GET['text'] properly
Still, if I send the following text : $MyText = "a + b" ;
I doesn't work anymore... I guess the character '+' is the trouble.
How to do it ? Is it possible to send params via _POST ? How ?
Thanks in advance,
albert
[Back to original message]
|