hello,
if i do $replace='<'.$k ey.'>'; it doesnt work as expected! i'm a little
confused any help?
I don't see a problem there - you might want to post further
information, about what you want to do, how the code looks like, what
result is expected, and what the actual result is.
Which is as expected. Of course you need to check the HTML source, as
your browser will display "<key>" as "", not being able to interpret the
"key" tag.
>hello,
>if i do $replace='<'.$k ey.'>'; it doesnt work as expected! i'm a
>little confused any help?
>
I don't see a problem there - you might want to post further
information, about what you want to do, how the code looks like, what
result is expected, and what the actual result is.
>
<?php
$key = 'key';
$replace='<'.$k ey.'>';
var_dump($repla ce);
?>
>
The result is: string(5) "<key>"
>
Which is as expected. Of course you need to check the HTML source, as
your browser will display "<key>" as "", not being able to interpret the
"key" tag.
>
HTH
Markus
sheesh i'm a retard. i didn't realize that! :) cheers mate.
Comment