Jump to content

php help


tolearn

Recommended Posts

Hi,

Here is an example:

 

<td width="346" class="logo">{sitelink}<a href="#"><img src="{url_tmpl_main}images/button-hover.gif" width="100%" height="80" border="0" /></a></a> </td>

 

The text i have marked in red. I don have any idea about why they are using like this. Is tht any function call. or any goloba variable?

Thank u

Link to comment
https://forums.phpfreaks.com/topic/93051-php-help/#findComment-476731
Share on other sites

Hi,

Here is an example:

 

<td width="346" class="logo">{sitelink}<a href="#"><img src="{url_tmpl_main}images/button-hover.gif" width="100%" height="80" border="0" /></a></a> </td>

 

The text i have marked in red. I don have any idea about why they are using like this. Is tht any function call. or any goloba variable?

Thank u

It's normally used for template replacements

 

I did something like this in a dynamic application where I didn't feel like writing a bounch of <?=$string?> sniplitts

 

you create an array

 

$replace = Array (

    'sitelink' => $sitelinkdata,

    'url_tmpl_main' => $template_dir );

 

Get the contents of the template file:

$html = file_get_contents("template_file");

 

Run something that will replace the test in {}

foreach($replace as $k => $v) {

    $html = str_replace("{".$k."}", $v, $html);

}

Link to comment
https://forums.phpfreaks.com/topic/93051-php-help/#findComment-476739
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.