PHP Question

LGZdarkside

[H]ard [H]eaded
Joined
Sep 19, 2002
Messages
1,108
I upgraded the version of PHP on my site and cannot figure this out.... I had some code in the content section as follows:

<A HREF="http://24.213.188.22">
LGZ's Web Cam</A>

This would display the text as clickable in the page and "hide" the ip address, this will not work in the current version of PHP (7.8) I am running.

How do I get the tags to work?

Thanks,

Brent
 
PHP is only up to 5.1.4

to do a link like that, you need to escape your quotes. So really, your code should look like this:

echo "<A HREF=\"http://24.213.188.22\">LGZ's Web Cam</A>";
 
Fark_Maniac said:
PHP is only up to 5.1.4

to do a link like that, you need to escape your quotes. So really, your code should look like this:

echo "<A HREF=\"http://24.213.188.22\">LGZ's Web Cam</A>";

Will try that! And you are correct it is PHPnuke :)

Brent
 
Back
Top