Hello! I am in need of help with some coding here: http://www.potterprophet.com/html/index.php

I am trying to include links in where my echo is, but I come up with a error everytime I use URL tags, such as:

<a href="index.php">Blah</a>

Here is the PHP coding:

@openside("The Movies");
  echo "content";
@closeside();

I want my URL links to apper in where it says "content". What should I do?

Thanks in advanced!

Recommended Answers

All 2 Replies

echo "<a href=\"http://www.your link here.com\">Click here</a>";

that should work.

or

echo "<a href='http://www.your link here.com'>Click here</a>";

YOU'RE A LIFESAVER! :D Cheers!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.