Web Hosting Talk







View Full Version : php bbcode help...


Studio-10
05-26-2004, 08:22 PM
<?php include("bbcode.php");
$content = " echo "Please reffer to the <a href=\"index.php?rnl=about&#contact\">contact</a> section on the about page ";?>


anything wrong with that?

Studio-10
05-26-2004, 08:24 PM
<?php include("bbcode.php");
$content = " echo "Please reffer to the <a href=\"index.php?rnl=about&#contact\">contact</a> section on the about page ";?>

i mean this.

Loon
05-27-2004, 04:51 AM
you wouldn't use

$variable = " echo " text

but rather

$variable = 'text';
echo $variable;

try to replace your bold <b> tags with CSS where possibile as they are depreciated, if not then using <strong> instead would be better.

and this doesn't seem like a valid url index.php?rnl=about&#contact

not sure if you meant index.php?rnl=about#contact or &contact=something_else but replace your & sign with &am p; (remove the space)

Studio-10
05-27-2004, 02:53 PM
no, http://rednurv.uni.cc/index.php?rnl=about&#contact is a valid URL.. and thank you for giving me the suggestions, I'll be sure to try them!