Chevy Posted November 5, 2006 Share Posted November 5, 2006 How do you display PHP on a .php page without it actually doing anything example is right here...[code]<?phpecho 'Like this';?>[/code] Link to comment https://forums.phpfreaks.com/topic/26228-resolved-displaying-php/ Share on other sites More sharing options...
trq Posted November 5, 2006 Share Posted November 5, 2006 [code=php:0]echo "<?php";echo "echo 'Like this';";echo "?>";[/code] Link to comment https://forums.phpfreaks.com/topic/26228-resolved-displaying-php/#findComment-119949 Share on other sites More sharing options...
Orio Posted November 5, 2006 Share Posted November 5, 2006 If you output php, it wont be phrased unless you use eval().Orio. Link to comment https://forums.phpfreaks.com/topic/26228-resolved-displaying-php/#findComment-119950 Share on other sites More sharing options...
Chikenty Posted November 5, 2006 Share Posted November 5, 2006 areyou tryin to display text u type or like database info? Link to comment https://forums.phpfreaks.com/topic/26228-resolved-displaying-php/#findComment-119951 Share on other sites More sharing options...
Chevy Posted November 5, 2006 Author Share Posted November 5, 2006 [quote author=thorpe link=topic=113906.msg463240#msg463240 date=1162739984][code=php:0]echo "<?php";echo "echo 'Like this';";echo "?>";[/code][/quote]Didn't workHere is my file:[code]<?phpinclude("top.php");echo "<?php";echo "echo 'How have you been?';";echo "?>";echo '<br><br>That is a PHP code';include("footer.php");?>[/code] Link to comment https://forums.phpfreaks.com/topic/26228-resolved-displaying-php/#findComment-119952 Share on other sites More sharing options...
alpine Posted November 5, 2006 Share Posted November 5, 2006 I think you are looking for the highlight_string function, outputs syntax colored code:[code]<?php$source = "<?php echo 'Hello World!'; ?>";echo highlight_string($source,true);?>[/code] Link to comment https://forums.phpfreaks.com/topic/26228-resolved-displaying-php/#findComment-119953 Share on other sites More sharing options...
Chevy Posted November 5, 2006 Author Share Posted November 5, 2006 Thank you so much, alpine!Have a good day! Link to comment https://forums.phpfreaks.com/topic/26228-resolved-displaying-php/#findComment-119954 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.