Announcement

Collapse
No announcement yet.

Sime code

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

    Sime code

    Hi:

    I have very simple question, how can I use PHP in actinic's generated pages. Actually, i have a quotation form that I want to upload in the same template that I have chosen.

    I am beginner to V8 so don't know enough.

    have an idea ???

    #2
    Salaam Assad

    I would recommend in keeping the quotation form as separte page, but if you want to use PHP within v8, then in the layout of your choosing you could put the following to show a simply hello world:
    Code:
    <actinic:block PHP="true">
     echo "hello world<br/>";
    </actinic:block>
    The blocks are saying what is in between will be PHP code.

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment

    Working...
    X