Can someone tell me what this does in the code,
|
Code:
|
$s[]=' '
$r[]=' ' |
I'm taking a good guess it means Search & replace. Although I'm not sure is this is built in function in PHP or where is referenced in glype code?
edit: ah,
|
Code:
|
$html=preg_replace($s,$r,$html); |
It all makes sense now. I love learning PHP,

Its preg_replace $s with $r.