Announcement

Collapse
No announcement yet.

Can I user an include into receipt page?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Can I user an include into receipt page?

    Can I user an include into receipt page?

    I need to generate an my own receipt to paymant in bank. I can to generate in same page that receipt (actinic 8). Can I use "include" instruction in receipt page?

    I tried:

    <actinic:block >
    include "(my_receipt.php)";
    </actinic:block>

    Doesn´t work

    I appreciate any help!

    (Sorry my english)

    Thx,

    Luciano

    #2
    Try

    <actinic:block php="true">
    include "(my_receipt.php)";
    </actinic:block>

    Comment


      #3
      Actualy, forget that. Sorry.

      The <actinic:block php="true"> tags only work on the desktop - not on the web server.

      It's crude, but I would use an <iframe> tag to include a window in the Actinic receipt that contains your custom receipt.

      Comment


        #4
        Thanh you

        Chris Dicken,

        Thank you for your help.

        Luciano

        Comment

        Working...
        X