> I call out show. But how can I add $req (mySQL support to wwwmodule.pl)?
> (I mean - how can I make a $req->{dbh}->quote("quoteme"); in
> wwwmodule.pl...)
If you are using EmbperlObject you can use the EMBPERL_OBJECT_HANDLER_CLASS
directive to make $req a derived class from your class
Is this
Hi,
I have another problem :-(
In test.html
---
[- $req = shift; $obj = $req->{obj}; -]
[+ $obj->show("hello", "quoteme"); +]
---
where $req - is mySQL DBI
and $obj is wwwmodule.pm
I call out show. But how can I add $req (mySQL support to wwwmodule.pl)?
(I mean - how can I make a $req->{dbh}->q