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
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

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.