Jump to content

Recommended Posts

I want to put some PHP code in a string $output.

With the string I  create a new php file and in there has to be some PHP code in that file.

But...

 

I get error, even on the simpelst code

 

$output = "<?php
					if(isset($_POST['Bijwerken'])) {
						header ('Location: http://localhost/Perfect/creategallery.php/creategallery.php');
						exit;
					}
				?>";

 

Gives:

 

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /var/www/Perfect/creategallery.php on line 7 

 

What the problem?

Link to comment
https://forums.phpfreaks.com/topic/210006-how-to-put-php-in-a-string/
Share on other sites

To reference an array element inside of a quoted string, you have to use curly-braces.

 

Also, I don't know if the closing php tag is being interpreted or not. I don't think it should be, but I know PHP will interpret it inside a comment, so you could split it up.

 

$output = "<?php
    if(isset({$_POST['Bijwerken']})) {
        header ('Location: http://localhost/Perfect/creategallery.php/creategallery.php');
        exit;
    }
?" . ">";

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.