Trying to put "extension loaded" in a table with n

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   Trying to put "extension loaded" in a table with n
floppydrivez
CZ Addict
 Codezwiz Site Donator
floppydrivez has been a member for over 18 year's 18 Year Member
usa.gif mississippi.gif
Occupation: graphic design
Age: 43
Gender: Male
Website:
Status: Offline
Joined: Feb 26, 2006
0.08 posts per day
Posts: 518
Points: 4,848
AIM Address Yahoo Messenger MSN Messenger 
Someone please show me how to put this code in a table. I have tried many times with no luck.

if (extension_loaded('gd'))
{
echo '<font color="green">Enabled</font><p />';
} else { echo '<font color="red">Disabled</font>'; }



Back to top Reply with quote
#2   re: Trying to put "extension loaded" in a table wi
floppydrivez
CZ Addict
 Codezwiz Site Donator
floppydrivez has been a member for over 18 year's 18 Year Member
usa.gif mississippi.gif
Occupation: graphic design
Age: 43
Gender: Male
Website:
Status: Offline
Joined: Feb 26, 2006
0.08 posts per day
Posts: 518
Points: 4,848
AIM Address Yahoo Messenger MSN Messenger 
Problem solved.

Thanks Taut



Back to top Reply with quote
#3   Re: re: Trying to put "extension loaded" in a tabl
BigJim
CZ Super Newbie
BigJim has been a member for over 18 year's 18 Year Member
Gender: Male
Status: Offline
Joined: Jun 09, 2006
0.01 posts per day
Posts: 60
Points: 1,327
   


Originally posted by floppydrivez @ Fri Aug 11, 2006 11:54 am:

Problem solved.

Thanks Taut

Where's the solution? I see a thanks but no post from that person?



Back to top Reply with quote
#4   re: Trying to put "extension loaded" in a table wi
floppydrivez
CZ Addict
 Codezwiz Site Donator
floppydrivez has been a member for over 18 year's 18 Year Member
usa.gif mississippi.gif
Occupation: graphic design
Age: 43
Gender: Male
Website:
Status: Offline
Joined: Feb 26, 2006
0.08 posts per day
Posts: 518
Points: 4,848
AIM Address Yahoo Messenger MSN Messenger 
You need to modify it slightly and add some forward slashes.

if (extension_loaded('gd'))
{


echo '<table border='0' width='100%'>';
echo '<tr>';
echo '<td><font color='green'>Enabled</font></td>';
echo '</tr>';
echo '</table>';
}

else
{
echo '<table border='0' width='100%'>';
echo '<tr>';
echo '<td><font color='red'>Disabled</font></td>';
echo '</tr>';
echo '</table>';

}



Back to top Reply with quote
#5   re: Trying to put "extension loaded" in a table wi
BigJim
CZ Super Newbie
BigJim has been a member for over 18 year's 18 Year Member
Gender: Male
Status: Offline
Joined: Jun 09, 2006
0.01 posts per day
Posts: 60
Points: 1,327
   
Thank you-



Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum