cowboysdude Posted August 13, 2011 Share Posted August 13, 2011 This is what I have and for the life of me I've tried several variations but cannot get it to work... Little help please...and Thank you! echo "<td><font color=$fontc size=$fonts>$change</font></td><br>"; Quote Link to comment https://forums.phpfreaks.com/topic/244704-quote-issue-brain-not-seeing-it/ Share on other sites More sharing options...
jcbones Posted August 13, 2011 Share Posted August 13, 2011 What makes you think there is a problem with that line? Quote Link to comment https://forums.phpfreaks.com/topic/244704-quote-issue-brain-not-seeing-it/#findComment-1256891 Share on other sites More sharing options...
cowboysdude Posted August 13, 2011 Author Share Posted August 13, 2011 When I try to use it, it turns my site white [blank], turn it off and it works again... so that's the line with the problem. Quote Link to comment https://forums.phpfreaks.com/topic/244704-quote-issue-brain-not-seeing-it/#findComment-1256936 Share on other sites More sharing options...
The Little Guy Posted August 13, 2011 Share Posted August 13, 2011 what does your source code show? but... A. you don't have quotes around your attribute values. B. why are you even using those, when there are css alternatives? C. the font tag is deprecated. Quote Link to comment https://forums.phpfreaks.com/topic/244704-quote-issue-brain-not-seeing-it/#findComment-1256938 Share on other sites More sharing options...
xyph Posted August 14, 2011 Share Posted August 14, 2011 echo '<td><font color="'.$fontc.'" size="'.$fonts.'">'.$change.'</font></td><br>'; Quote Link to comment https://forums.phpfreaks.com/topic/244704-quote-issue-brain-not-seeing-it/#findComment-1256942 Share on other sites More sharing options...
cowboysdude Posted August 14, 2011 Author Share Posted August 14, 2011 ohhhhhhhhhhh ok found the problem afterall.. I was calling $param and it should have been $params. Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/244704-quote-issue-brain-not-seeing-it/#findComment-1256943 Share on other sites More sharing options...
jcbones Posted August 14, 2011 Share Posted August 14, 2011 When I try to use it, it turns my site white [blank], turn it off and it works again... so that's the line with the problem. You should be developing with error's own full. error_reporting(E_ALL); ini_set('display_errors',1); Quote Link to comment https://forums.phpfreaks.com/topic/244704-quote-issue-brain-not-seeing-it/#findComment-1256947 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.