What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » My site

1 votes - 5 average   My site
Author: Message:
Mnjul
forum super mod
******

Avatar
plz wub me

Posts: 5396
Reputation: 58
– / Other / Flag
Joined: Nov 2002
Status: Away
RE: My site
You don't need to crowd everything onto one line ;)

Well your quotes look like a mess to me :p

This should work
code:
echo "<table border=1 class=double summary=Downloads><tr><td><font color=#ffff00><b>" . $row["name"] . "</b></font> " . $row["mplink"] . "<br>" . $row["desc"] . "<br><hr><a href=\"" . $row["dllink"] . "\"><font color=#ffff00><b>Download page</b></font></a><br><b>Type:</b> " . $row["type"] . "</td></tr></table><br>";



And if you want a good-looking one (not only neat in PHP but also in HTML)...
More lines but I suppose easy to maintain...
code:
echo "<table border=1 class=double summary=Downloads>\n";
echo "<tr><td>\n";
echo "<font color=#ffff00><b>" . $row["name"] . "</b></font> " . $row["mplink"] . "<br>\n";
echo $row["desc"];
echo "<br><hr>\n";
echo "<a href=\"" . $row["dllink"] . "\"><font color=#ffff00><b>Download page</b></font></a><br>\n";
echo "<b>Type:</b> " . $row["type"];
echo "</td></tr>\n";
echo "</table><br>";


This post was edited on 09-04-2004 at 10:40 AM by Mnjul.
09-04-2004 10:34 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
My site - by k776 on 09-04-2004 at 09:12 AM
RE: My site - by Mnjul on 09-04-2004 at 10:34 AM
RE: My site - by k776 on 09-06-2004 at 09:19 AM
RE: My site - by WDZ on 09-06-2004 at 09:31 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On