emtec Posted December 20, 2008 Share Posted December 20, 2008 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 More sharing options...
RussellReal Posted December 20, 2008 Share Posted December 20, 2008 ?? huh lol can you like.. show a whole php block of code or something coz you lost me lol Link to comment https://forums.phpfreaks.com/topic/137804-echo-defined-text-from-a-database/#findComment-720248 Share on other sites More sharing options...
emtec Posted December 20, 2008 Author Share Posted December 20, 2008 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 } ?> Link to comment https://forums.phpfreaks.com/topic/137804-echo-defined-text-from-a-database/#findComment-720249 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.