Anxious Posted April 23, 2009 Share Posted April 23, 2009 Lets say I have a php field, that displays the particular users username. So in designer view, it has the square box with PHP written on it. If I want to make a table smaller, it doesn't allow me to, being as it goes as big as the PHP tag. Is there anyway, to hide that? so that I can make the table or field smaller than the tag. Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/ Share on other sites More sharing options...
tang Posted April 23, 2009 Share Posted April 23, 2009 Which application are you using? Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/#findComment-817575 Share on other sites More sharing options...
revraz Posted April 23, 2009 Share Posted April 23, 2009 Is this a question regarding a certain IDE (Editor)? Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/#findComment-817576 Share on other sites More sharing options...
Anxious Posted April 23, 2009 Author Share Posted April 23, 2009 I use dreamweaver to view in designer view, as I develope my layouts in there. <?php $req_user_info = $database->getUserInfo($req_user); /* Display Username */ echo "".$req_user_info['username']; ?> That for example, in designer view would display a square box, yellowish, with PHP written in it. Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/#findComment-817579 Share on other sites More sharing options...
redarrow Posted April 23, 2009 Share Posted April 23, 2009 use inline css you no that? Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/#findComment-817594 Share on other sites More sharing options...
Anxious Posted April 23, 2009 Author Share Posted April 23, 2009 I don't know about inline. sorry Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/#findComment-817599 Share on other sites More sharing options...
mikesta707 Posted April 23, 2009 Share Posted April 23, 2009 No i dont think there is a way to hide the yellow PHP box in dreamweaver. or at least I have never run into a way (checked around for a while) Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/#findComment-817600 Share on other sites More sharing options...
Anxious Posted April 23, 2009 Author Share Posted April 23, 2009 does anyone else know at all? Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/#findComment-817609 Share on other sites More sharing options...
redarrow Posted April 23, 2009 Share Posted April 23, 2009 sorry but using dream weaver is a nightmare designing php applications. try notepad++ Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/#findComment-817611 Share on other sites More sharing options...
jcombs_31 Posted April 23, 2009 Share Posted April 23, 2009 The design view of dreamweaver will not allow you to see the code generated by PHP so you need some indication that there should be output or a script there. I don't know that there is a way to hide that. CS4 I believe has a live preview that may fix that. Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/#findComment-817650 Share on other sites More sharing options...
Zane Posted April 23, 2009 Share Posted April 23, 2009 The design view of dreamweaver will not allow you to see the code generated by PHP so you need some indication that there should be output or a script there. I don't know that there is a way to hide that. CS4 I believe has a live preview that may fix that. yeah but you have to have a testing server running to parse it. Which is a pain IMO Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/#findComment-817654 Share on other sites More sharing options...
jcombs_31 Posted April 30, 2009 Share Posted April 30, 2009 The design view of dreamweaver will not allow you to see the code generated by PHP so you need some indication that there should be output or a script there. I don't know that there is a way to hide that. CS4 I believe has a live preview that may fix that. yeah but you have to have a testing server running to parse it. Which is a pain IMO How is that a pain, you don't have some form of *amp stack on your development box? Quote Link to comment https://forums.phpfreaks.com/topic/155388-how-can-you-hide-php-tags/#findComment-822802 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.