Jump to content

echo defined text from a database


emtec

Recommended Posts

hi all,

 

i want to echo some defined text, from a DB, but the code doesnt get parsed.

 

define:

<?php
define("SOMETEXT", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non nunc quis nulla feugiat ultricies. Maecenas leo libero, luctus ");

 

sql:

permission = SOMETEXT

 

echo

<?php echo $row['permission'] ?>

 

when i open the page, it echo's SOMETEXT instead of "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non nunc quis nulla feugiat ultricies. Maecenas leo libero, luctus "

 

anybody know how i can resolve this?

Link to comment
https://forums.phpfreaks.com/topic/137804-echo-defined-text-from-a-database/
Share on other sites

define

define("ADMINADDMOD", "Can admins add moderators?");

 

<?php 
		$result = mysql_query("SELECT * FROM ".$_SESSION['DBprefix']."permissions WHERE level = 2"); // selct from DB
		while($row = mysql_fetch_array($result)){	?>
            <tr><td><?php echo $row['permission'] ?></td>
            <td><input type="radio" name="opt" value="yes"> yes | <input type="radio" name="opt" value="no"> no
            </td>
            </tr>	
            <?php  } ?>

 

3122664982_1268c9902f.jpg?v=0

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.