Welcome to Dream.In.Code
Become a PHP Expert!

Join 137,424 PHP Programmers for FREE! Get instant access to thousands of PHP experts, tutorials, code snippets, and more! There are 1,952 people online right now. Registration is fast and FREE... Join Now!




new line

 
Reply to this topicStart new topic

new line, noob question

BigMike27
25 Jan, 2008 - 08:16 AM
Post #1

New D.I.C Head
*

Joined: 5 May, 2007
Posts: 20


My Contributions
CODE
<?php
//this is the function i just create to match a line
function getline($file,$line)
{
$fd = fopen($file, "r");
$liner = 0;
while ($txt=fgets($fd)) {
$liner++;
if ($liner == $line) {
$textl = $txt;
}
}
fclose ($fd);
return $textl;
}
//end of the function

echo "Top 5 Stealers ";
echo getline('bitch.txt',1);
echo getline('bitch.txt',2);
echo getline('bitch.txt',3);
?>


How do I make the last 3 echoes on seperate lines, and in the middle of the page?
Sorry, I just started learning PHP and couldn't find it.
User is offlineProfile CardPM
+Quote Post

no2pencil
RE: New Line
25 Jan, 2008 - 08:19 AM
Post #2

My fridge be runnin OH NOEZ!
Group Icon

Joined: 10 May, 2007
Posts: 6,550



Thanked: 67 times
Dream Kudos: 2425
Expert In: Goofing Off

My Contributions
CODE

echo "Top 5 Stealers <br>";
echo getline('bitch.txt',1)."<br>";
echo getline('bitch.txt',2)."<br>";
echo getline('bitch.txt',3)."<br>";


The dot will append, adding quote, breake, end quote to your echo.
User is offlineProfile CardPM
+Quote Post

BigMike27
RE: New Line
25 Jan, 2008 - 08:27 AM
Post #3

New D.I.C Head
*

Joined: 5 May, 2007
Posts: 20


My Contributions
Thanks for the fast reply smile.gif
How would I get it to center? Would I also use html for it?


EDIT: Found out how. Thank you for your help.

This post has been edited by BigMike27: 25 Jan, 2008 - 08:41 AM
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/5/08 04:37AM

Live PHP Help!

PHP Tutorials

Reference Sheets

PHP Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month