Jump to content

Strange issue


Pioden

Recommended Posts

I'm really not sure how to describe this problem - hence the rather unhelpful title!

 

OK in order to make life easier for designers etc. I wanted all my HTML etc. available in one file - which includes some embedded PHP. In the presentation file i have the line

 

$main_link_display = "<a href=\"index.php?p=$page_uid\">$title</a><br />$subgroup";

 

in the other file (linked by an 'include') where the code is required I have

 

$navigation .= $main_link_display;

 

As you might guess I doesn't work. Instead of the expected HTML and PHP output I get

<a href="index.php?p="></a><br />

 

What am I doing wrong? I have my head on the wrong way round today :-(

Link to comment
Share on other sites

$page_uid and $title must be defined at the time the $main_link_display = "...." statement is executed.

 

If $main_link_display = "...." is more like a "template", then you should use "place holder tags" in it and use the str_replace() function to insert the actual values. Place holder tags are anything you want, but {tagname} is typically used.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.