Jump to content

vin301

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

vin301's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I want to do the following: The main page will pull in another file that has a table to display the form results. MAIN PAGE $str = file_get_contents("formFile.php"); AND formFile.php has the following Name: <?= $_POST['fullname'] ?> Address: <?= $_POST['address'] ?> When I do this the POST values do not get filled in. What do I need to do? If I do an include() it will work but I cannot assign the include to the var ... this won't work $str = include(); Thoughts?
  2. THANK YOU!!!! [!--quoteo(post=387511:date=Jun 24 2006, 01:17 PM:name=kenrbnsn)--][div class=\'quotetop\']QUOTE(kenrbnsn @ Jun 24 2006, 01:17 PM) [snapback]387511[/snapback][/div][div class=\'quotemain\'][!--quotec--] That syntax is the "heredoc" syntax and is described in the [a href=\"http://www.php.net/heredoc\" target=\"_blank\"]fine manual[/a]. Here is a brief example pulled from the manual: [code]<?php $str = <<<EOD Example of string spanning multiple lines using heredoc syntax. EOD;?>[/code] Ken [/quote]
  3. I saw somewhere that you can assign HTML to a variable doing something like the following: $var <<< EOF ?> HTML tags and "quotes" and 'quotes' <? EOF . ?> ANY THOUGHTS?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.