php and html

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • van93
    New Member
    • Aug 2013
    • 5

    php and html

    i get some template for inventory management using php, how can i applied it into html that i will make? please help me... thank you before...
  • univercel
    New Member
    • Aug 2013
    • 11

    #2
    You need to use <?php tag.

    Comment

    • van93
      New Member
      • Aug 2013
      • 5

      #3
      just that? thank you

      Comment

      • selvasoft
        New Member
        • Mar 2010
        • 34

        #4
        Your template is based on php. if you need to apply html, you can use HTML tags with your template code like that
        Code:
        <html>
        <body>
        <?php 
          // here use your PHP code
        ?>
        again start your HTML code
        <?php
        // here again your PHP code
        ?
        </body>
        </html>

        Comment

        • van93
          New Member
          • Aug 2013
          • 5

          #5
          thank you very much guys! you're helping me much!

          Comment

          Working...