Re: [SMARTY] RE: [PEAR] HTML Quickform passes values in URL
"zhouchao" <[email protected]> Fri, 15 Dec 2006 20:16:01 +0800
| Newsgroups | gmane.comp.php.pear.general,gmane.comp.php.smarty.general |
|---|---|
| Message-ID | <026c01c72042$c8bf2950$e406050a@DH5X6Y1X> |
<?
function display_princ($conditions,$options,$stringcontent="")
{
?>
echo $stringcontent; // output as html?
<?
}
?>
----- Original Message -----
From: "Jochem Maas" <[email protected]>
To: "Vignesh M P N" <[email protected]>
Cc: <[email protected]>; <[email protected]>
Sent: Friday, December 15, 2006 8:04 PM
Subject: Re: [SMARTY] RE: [PEAR] HTML Quickform passes values in URL
>I don't have an answer for you but I noticed something weird in
> the code you posted ...
>
> Vignesh M P N wrote:
>> Thanks for your input. I apologize for being unaware of the etiquette.
>>
>> Please find below the simplified code fragments from associated 3 files.
>> Also the below snippets will explain what I meant by "fetch/echo".
>
> ...
>
>>
>>
>> ==================
>> tmpl_princ.php
>> ==================
>
> is this the actual code? why is the echo statement outside of the php
> markers?
>
>> <?
>> function display_princ($conditions,$options,$stringcontent="")
>> {
>> ?>
>> echo $stringcontent;
>> <?
>> }
>> ?>
>
> shouldn't it simply be this?:
>
> function display_princ($conditions,$options,$stringcontent="")
> {
> echo $stringcontent;
> }
>
>>
>>
>> ==================
>> Login.tpl
>> ==================
>> {$form.javascript}
>>
>> <form {$form.attributes}>
>> {$form.hidden}
>>
>> <TABLE height=100% name="TblLogin" id="TblLogin" >
>> <TR>
>> <TD class="label">
>> {$login.lusername.label}
>> </TD>
>> <TD>
>> {$login.lusername.html}
>> </TD>
>> </TR>
>> <TR>
>> <TD class="label">
>> {$login.lpasswd.label}
>> </TD>
>> <TD>
>> {$login.lpasswd.html}
>> </TD>
>> </TR>
>> <TR>
>> <TD colspan=2>
>> {$login.login.html}
>> </TD>
>> </TR>
>> </TABLE>
>>
>>
>> Thanks
>> Vignesh.
>>
>> -----Original Message-----
>> From: Alexey Borzov [mailto:[email protected]]
>> Sent: Thursday, December 14, 2006 1:34 PM
>> To: Vignesh M P N
>> Cc: [email protected]
>> Subject: Re: [PEAR] HTML Quickform passes values in URL
>>
>> Hi,
>>
>> Vignesh M P N wrote:
>>> Please let me know what I am missing here. Sorry I didn't provide any code
>>> fragments as they are huge.
>>
>> ...and that's precisely the reason you won't get any useful answers. Come to
>>
>> think of it, you won't get any useful answers if you post "huge" code
>> fragments,
>> either.
>>
>
> --
> Smarty General Mailing List (http://smarty.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
>