w3-tools.com - Free Webmaster Tools and Resources
 
w3-tools.com - Free Webmaster Tools and Resources
 Free Webmaster Tools and Resources

 



Smarty Manual

This manual is provided as a courtesy. It is not an official source. Please check smarty.php.net for updated information.

Smarty Manual

Smarty Manual

assign()

assign() -- assign values to the templates

Description

void assign ( mixed var)

void assign ( string varname, mixed var)

You can explicitly pass name/value pairs, or associative arrays containing the name/value pairs.

Example 13-1. assign()

<?php
// passing name/value pairs
$smarty->assign('Name''Fred');
$smarty->assign('Address'$address);

// passing an associative array
$smarty->assign(array('city' => 'Lincoln''state' => 'Nebraska'));

// passing a row from a database (eg adodb)
$sql 'select id, name, email from contacts where contact ='.$id;
$smarty->assign('contact'$db->getRow($sql));
?>

Access these in the template with

{* note the vars are case sensitive like php *}
{$Name}
{$Address}
{$city}
{$state}

{$contact.id}, {$contact.name},{$contact.email}

For more complex array assignments see {foreach} and {section}

See also assign_by_ref(), get_template_vars(), clear_assign(), append() and {assign}

Newsletter

Join to our newsletter and receive news and updates about our site.
Your name: 
E-mail address: 
Action: 
 

Hosted by

Search

Google
Web w3-tools.com

Links

  What is my IP? Find your IP address!     Valid XHTML 1.0 Transitional  
Copyright © 2006. by w3-tools.com. All rights reserved