Jump to content

Include


skylab

Recommended Posts

I'm trying to add an include inside regular text. I don't know why it doesn't work. It's ignoring the in_header.php even though I escaped the ' with a \

Any help would be greatly appreciated.

 

 

 

<?php
//MySQL Database Connect
 include 'bind.php';
$sql = mysql_query("SELECT * FROM sql_test WHERE Name= 'TEST'");
while($result = mysql_fetch_array($sql)) {
echo $result["Name"]. $result["Gender"]. 'TEXT TEXT TEXT <?php include \'inc_header.php\'?> Text Text Text';
}
?>
Link to comment
https://forums.phpfreaks.com/topic/281556-include/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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