PHP question, using a function inside an include?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chadglni
    Confirmed User
    • Dec 2002
    • 6924

    #1

    PHP question, using a function inside an include?

    Can anyone tell me real quick how to make a function work within an include?

    Include is formatted like:

    <? include 'http://www.site.com/folder/file.php?FILE=http://www.site2.com/folder/REPLACE.php&TEMPLATE=template.html'; ?>

    Need to add a ($function) where it says REPLACE which of course currently spells out the funtion instead of inserting the correct data. Easy way to stop this?


    Sign up here - Dating Site affiliate program
  • woj
    <&(©¿©)&>
    • Jul 2002
    • 47882

    #2
    use double quotes instead:
    <? include("http://www.site.com/folder/file.php?FILE=http://www.site2.com/folder/$function.php&TEMPLATE=template.html"); ?>

    By the way, whatever you trying to do, it doesn't look like the best way of doing things...
    Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
    Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
    Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager

    Comment

    • ssp
      Confirmed User
      • Jan 2005
      • 7990

      #3
      How about?

      <?

      1.) function here
      2.) store end result in variable
      3.) include variable

      ?>

      Comment

      • chadglni
        Confirmed User
        • Dec 2002
        • 6924

        #4
        Originally posted by woj
        use double quotes instead:
        <? include("http://www.site.com/folder/file.php?FILE=http://www.site2.com/folder/$function.php&TEMPLATE=template.html"); ?>

        By the way, whatever you trying to do, it doesn't look like the best way of doing things...
        Thanks, and yeah it's horrible. It needs to be custom coded but I'm rigging up a demo for an investor before we do a custom job.


        Sign up here - Dating Site affiliate program

        Comment

        Working...