Complete PHP newbie here.
Let's say I have a line of code like this:
<a href="http://www.123.com">my website</a>
but I want to replace "my website" with "download here" so it looks like this:
<a href="http://www.123.com">download here</a>
What PHP coding would accomplish this switch?
Thanks!