Re: [SMARTY] RE: [PEAR] HTML Quickform passes values in URL
Jochem Maas <[email protected]> Fri, 15 Dec 2006 13:04:11 +0100
| Newsgroups | gmane.comp.php.pear.general,gmane.comp.php.smarty.general |
|---|---|
| Message-ID | <[email protected]> |
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.
>
--
PEAR General Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php