473,623 Members | 2,447 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

smarty simple question?

i'm newcomer in using smarty and i have problem like this:
i want to have one template file (e.g. index.tpl) in this file section
which use variable {$content}.
and two files *.php which are using the same template index.tpl and
only change the content.

for example:
/*index.php*/
$smarty = new MySmarty();
$smarty->assign('conten t','INDEX');
/*about.php*/
$smarty=new MySmarty();
$smarty->assign('conten t','ABOUT');

how to do this, because this way it doesn't work?

Jun 7 '07 #1
2 2065
On Jun 7, 5:52 am, Gene <ox.g...@wp.plw rote:
i'm newcomer in using smarty and i have problem like this:
i want to have one template file (e.g. index.tpl) in this file section
which use variable {$content}.
and two files *.php which are using the same template index.tpl and
only change the content.

for example:
/*index.php*/
$smarty = new MySmarty();
$smarty->assign('conten t','INDEX');
/*about.php*/
$smarty=new MySmarty();
$smarty->assign('conten t','ABOUT');

how to do this, because this way it doesn't work?
give your second inherited MySmarty() object a different reference
name:
....
/*about.php*/
$smarty2 = new MySmarty();
$smarty2->assign('conten t','ABOUT');

hth,

gk

Jun 7 '07 #2
Gene wrote:
i'm newcomer in using smarty and i have problem like this:
i want to have one template file (e.g. index.tpl) in this file section
which use variable {$content}.
and two files *.php which are using the same template index.tpl and
only change the content.

for example:
/*index.php*/
$smarty = new MySmarty();
$smarty->assign('conten t','INDEX');
/*about.php*/
$smarty=new MySmarty();
$smarty->assign('conten t','ABOUT');

how to do this, because this way it doesn't work?

You can include php files in smarty
(http://smarty.php.net/manual/en/lang...nclude.php.php)

{if $content == "INDEX"}
{include_php file="index.php "}
{elseif $content == "ABOUT"}
{include_php file="about.php "}
{/if

The much better way is to include also templates for different content
with include (http://smarty.php.net/manual/en/lang...on.include.php)

{if $content == "INDEX"}
{include file="index.tpl "}
{elseif $content == "ABOUT"}
{include file="about.tpl "}
{/if
Jun 11 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2899
by: Daan | last post by:
Hello all, I'm having a little problem with Smarty. Getting it to work in a simple case went fine, but now I have the following situation: / /smarty /templates template.tpl /templates_c
1
2304
by: Richard | last post by:
I need help. I have a smarty based program that I am modifying. I have a smarty template file that consists of smarty and HTML. I need to integrate some PHP database calls into it. My problem is I cannot figure out how to pass value between smarty and PHP. Going from php to smarty I've tried this: {php} $smarty = new Smarty; $smarty->assign("x", 100);
2
14159
by: Mike | last post by:
I am sure that I am making a simple boneheaded mistake and I would appreciate your help in spotting in. I have just installed apache_2.0.53-win32-x86-no_ssl.exe php-5.0.3-Win32.zip Smarty-2.6.7.tar.gz on a system running WindowsXP SP2. Apache and PHP tested out fine. After adding Smarty, I ran the following http://localhost/testphp.php
1
2042
by: DJ Majestik | last post by:
OK, I am new to the whole PEAR/Smarty templating thing. I am trying to setup my directory structure correctly. If someone could weigh in and see if I have this setup "right", I would appreciate it. Directory structure: pear/ db/ db/ DB/ doc/
2
2603
by: M | last post by:
Hi Folks, I am trying to install Smarty using PHP 5 on a Windows XP PC using IIS v6 The following PHP File: <!doctype html public "-//W3C//DTD HTML 4.0 //EN"> <html> <head>
2
4952
by: Freebird | last post by:
Hello you all, =] I've a smarty var, like this: {$var} that is equal to: ttttttttttttt|zzzzzzzzzzzz It can be any size, the important is that they are separated by the '|' How do I 'explode' that into an array or 2 variables in the smarty template
0
1599
by: Conrad | last post by:
Hi, I'm very new to Smarty Template Engine and I'm using PHP 5.0.4 on the Windows XP Professional platform and I have the following question: When I change the 7th line of the script to use a new name and refresh the browser, it maintains the old value instead of updating to the new value. Both index.php and SmartySetup.class.php appear below: index.php:
7
2687
by: diane100 | last post by:
Hi I am new to PHP and Smarty (I know only very basic things) and I need help with a warning message I get when I call a page in a browser. I purchased some software from a company who are no longer replying to my messages for help so I have decided to try and fix the many problems myself. I am receiving the following messages when loading any of my pages and some pages are not even showing at all. Warning:...
1
1929
by: empiresolutions | last post by:
i have what may be a very simple question for someone who has worked with X-Cart or Smarty. I am adding a rollover image next to the category names in the main navigation. The following is my stripped down for this post version. {foreach from=$categories item=c} <div> <div><img name="{$c.category}_" src="{$ImagesDir}/custom/paw.gif"></div> <div><a...
0
8168
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8672
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8614
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8330
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
5561
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4075
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2603
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1780
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1474
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.