PDA

View Full Version : Php scripting problem .. again :D


noooze
09-23-2003, 12:28 PM
ok
got this script and i want the page to align left.
How do I do ?

print("
<A HREF=\"$this_link_info[3]\"><FONT FACE=\"Arial, Helvetica\" SIZE=3>$this_link_info[2]</FONT></A>
<BR>
<FONT FACE=Arial, Helvetica SIZE=2>$this_link_info[5]</FONT><BR><BR>
\n");

where to put <p align="left"> ?

noooze

matt
09-23-2003, 11:51 PM
I would do it like this:


print("
<div align=\"left\"><A HREF=\"$this_link_info[3]\"><FONT FACE=\"Arial, Helvetica\" SIZE=3>$this_link_info[2]</FONT></A>
<BR>
<FONT FACE=Arial, Helvetica SIZE=2>$this_link_info[5]</FONT><BR><BR></div>
\n");


:)

noooze
09-24-2003, 11:44 AM
Thx alot dude
I know its stupid but I just kept getting errors - guess I'm stupid :D