Forum Moderators: coopster
Any thoughts?
Here's an example.
$test1 = '<font color="#3300cc" size="4">some text</font><br><font size="3"><a href="/directory/index.php">linktext</a></font><br><br />';
echo $test1;
$test2 = "<br><font size='2'>more text<a href='/domain/index.php'>link text</a> some more text.</font><br />";
echo $test2;
in actuality my code is a bit more complex. A few variables contain code that will fetch images from another gallery script's database..
Thanks for the help!
--JC
you need to run a loop, if required, otherwise simply make an html table and create as much cells as you need and then echo the variables in the cells.
also from your sample code i am guessing you are doing very bad coding practice. try to keep your styling separate from the data manipulation i.e use css instead of using so much fonts tags etc etc in your code.
external css can help you style it once and throughout the application!