Jump to content

[Ajuda] @fwrite criando arquivo .php com conte�dos $variabes $rows


marcosshess
Go to solution Solved by requinix,

Recommended Posts

Olá a Todos e um Feliz 2017 Logo Hj dia 01 estou mexendo 1 um projeto meu que fara sucesso!
mais to com um básico problema ao criar através do php arquivos .php mesmo  bom olhem o código:

ele funciona bem mais no criar o arquivo .php ele envia em branco os conteúdos que possui $


Codigo:
<?php
$filename = "$link/mahsystemcodeconnect.php";
if(file_exists($filename)){
$script = file_get_contents($filename);
} else {
$script = "";
}
//Adciona um texto na página

$script = "<?php 
$conecta = mysql_connect('HOST', 'LOGIN', 'SENHA') or print (mysql_error()); 
mysql_select_db('BANCO', $conecta) or print(mysql_error()); 
print 'Conexão e Seleção OK!'; 
mysql_close($conecta); 
?>" . $script;

//Escrevendo o texto na página
$file = @fopen($filename, "x+");
@fwrite($file, stripslashes($script));
@fclose($file);
?>

Arquivo mahsystemcodeconnect.php criado fika assim:

<?php 
= mysql_connect('HOST', 'LOGIN', 'SENHA') or print (mysql_error()); 
mysql_select_db('BANCO', ) or print(mysql_error()); 
print 'Conexão e Seleção OK!'; 
mysql_close(); 
?>

Faltando as variabes com $    =  $conecta e também ate com as letras bagunçadas em vez de 'Conexão e Seleção OK!' fika 'Conexão e Seleção OK!'   Obrigado Des de Ja!! alguém pode me ajudar?? 

Link to comment
Share on other sites

  • Solution

The code is suspicious but I'll give the benefit of doubt.

 

http://php.net/manual/pt_BR/language.types.string.php#language.types.string.parsing

Quando uma string é especificada dentro de aspas duplas ou heredoc, as variáveis são interpretadas dentro delas.

$script = "<?php 
\$conecta = mysql_connect('HOST', 'LOGIN', 'SENHA') or print (mysql_error()); 
mysql_select_db('BANCO', \$conecta) or print(mysql_error()); 
print 'Conexão e Seleção OK!'; 
mysql_close(\$conecta); 
?>" . $script;
Link to comment
Share on other sites

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.