php-windows Digest 16 Jan 2006 07:44:18 -0000 Issue 2867
Topics (messages 26621 through 26631):
Re: any good suggestion on books
26621 by: M. Sokolewicz
26622 by: M. Sokolewicz
26626 by: El Bekko
26627 by: El Bekko
26629 by: pfancy
26630 by: pfancy
26631 by: gued steph
Page-style data display system
26623 by: Daniel Anderson
26624 by: John Ellingsworth
26628 by: El Bekko
Re: Page-style data display system [w/link]
26625 by: John Ellingsworth
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[email protected]
----------------------------------------------------------------------
--- Begin Message ---
El Bekko wrote:
pfancy wrote:
for beginners. I've been browsing the group for a little while. I
honestly have not gotten a book to learn php on. just wanted to learn
and see what you all were saying here. I'm not going to ask question
about php since I haven't started yet, My question I am going to ask
is this. What book would you recommend for the very beginner. I know
you had to start some where ;) Thanks in advance.
Try PHp for dummies ;)
which is part of *the* worst series I've ever seen. I recommend the
O`Reilly series, they're really good.
- tul
--- End Message ---
--- Begin Message ---
El Bekko wrote:
pfancy wrote:
for beginners. I've been browsing the group for a little while. I
honestly have not gotten a book to learn php on. just wanted to learn
and see what you all were saying here. I'm not going to ask question
about php since I haven't started yet, My question I am going to ask
is this. What book would you recommend for the very beginner. I know
you had to start some where ;) Thanks in advance.
Try PHp for dummies ;)
which is part of *the* worst series I've ever seen. I recommend the
O`Reilly series, they're really good.
- tul
--- End Message ---
--- Begin Message ---
M. Sokolewicz wrote:
El Bekko wrote:
pfancy wrote:
for beginners. I've been browsing the group for a little while. I
honestly have not gotten a book to learn php on. just wanted to learn
and see what you all were saying here. I'm not going to ask question
about php since I haven't started yet, My question I am going to ask
is this. What book would you recommend for the very beginner. I
know you had to start some where ;) Thanks in advance.
Try PHp for dummies ;)
which is part of *the* worst series I've ever seen. I recommend the
O`Reilly series, they're really good.
- tul
It's a pretty good book, although the series might be bad ;)
--- End Message ---
--- Begin Message ---
M. Sokolewicz wrote:
El Bekko wrote:
pfancy wrote:
for beginners. I've been browsing the group for a little while. I
honestly have not gotten a book to learn php on. just wanted to learn
and see what you all were saying here. I'm not going to ask question
about php since I haven't started yet, My question I am going to ask
is this. What book would you recommend for the very beginner. I
know you had to start some where ;) Thanks in advance.
Try PHp for dummies ;)
which is part of *the* worst series I've ever seen. I recommend the
O`Reilly series, they're really good.
- tul
It's a pretty good book, although the series might be bad ;)
--- End Message ---
--- Begin Message ---
""M. Sokolewicz"" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> El Bekko wrote:
>> pfancy wrote:
>>
>>> for beginners. I've been browsing the group for a little while. I
>>> honestly have not gotten a book to learn php on. just wanted to learn
>>> and see what you all were saying here. I'm not going to ask question
>>> about php since I haven't started yet, My question I am going to ask is
>>> this. What book would you recommend for the very beginner. I know you
>>> had to start some where ;) Thanks in advance.
>>
>>
>> Try PHp for dummies ;)
> which is part of *the* worst series I've ever seen. I recommend the
> O`Reilly series, they're really good.
>
> - tul
Thanks alot to everyone who replied. I will definitely look into those
books.
--- End Message ---
--- Begin Message ---
""M. Sokolewicz"" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> El Bekko wrote:
>> pfancy wrote:
>>
>>> for beginners. I've been browsing the group for a little while. I
>>> honestly have not gotten a book to learn php on. just wanted to learn
>>> and see what you all were saying here. I'm not going to ask question
>>> about php since I haven't started yet, My question I am going to ask is
>>> this. What book would you recommend for the very beginner. I know you
>>> had to start some where ;) Thanks in advance.
>>
>>
>> Try PHp for dummies ;)
> which is part of *the* worst series I've ever seen. I recommend the
> O`Reilly series, they're really good.
>
> - tul
Thanks alot to everyone who replied. I will definitely look into those
books.
--- End Message ---
--- Begin Message ---
You can tey tutorials from developpez.com
Stephane
--- El Bekko <[EMAIL PROTECTED]> a écrit :
> M. Sokolewicz wrote:
> > El Bekko wrote:
> >
> >> pfancy wrote:
> >>
> >>> for beginners. I've been browsing the group for
> a little while. I
> >>> honestly have not gotten a book to learn php on.
> just wanted to learn
> >>> and see what you all were saying here. I'm not
> going to ask question
> >>> about php since I haven't started yet, My
> question I am going to ask
> >>> is this. What book would you recommend for the
> very beginner. I
> >>> know you had to start some where ;) Thanks in
> advance.
> >>
> >>
> >>
> >> Try PHp for dummies ;)
> >
> > which is part of *the* worst series I've ever
> seen. I recommend the
> > O`Reilly series, they're really good.
> >
> > - tul
>
> It's a pretty good book, although the series might
> be bad ;)
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
___________________________________________________________________________
Nouveau : téléphonez moins cher avec Yahoo! Messenger. Appelez le monde entier
à partir de 0,012 /minute !
Téléchargez sur http://fr.messenger.yahoo.com
--- End Message ---
--- Begin Message ---
Okay, I have a database table to which contains posts from people.
I want to retrieve these and post them in a linear format (as I currently
have), but...! I want to have pages, each page has 50 rows from the database at
a time.
If I have 102 results, I want it to be separated into three pages.
Page: 1, 2, 3
The page link I want to be displayed in the URL as a variable: page=1 (example).
Each row is ordered with a primary key
page=1 will return the first 50 results (1 - 50)
page=2 will return the next 50 results (51 - 100)
page=3 will return the next two results (101 - 102)
I want a system that will automatically do this. I want the page numbers to
increase along with how many results are in the database. At the moment there
are only three, but in time it will grow. So essentially it should start off at
Page: 1, then increase as I hit the 50th entry.
Is there anyone who can help me with this?
If you need more detail, please email me and I'll try to explain more in-depth!
Many thanks!
I hope you can help!
Thanks for your time all!
~Dan
--- End Message ---
--- Begin Message ---
Dan
You may want to try the Pear Pager package:
--
Thanks,
John Ellingsworth
Project Leader, Virtual Curriculum
Academic Programs
School of Medicine
University of Pennsylvania
(215) 573-4451
Virtual Curriculum
http://www.cu2000.med.upenn.edu
AIM: vc2000support
To contact the Virtual Curriculum team:
[EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
Daniel Anderson wrote:
Okay, I have a database table to which contains posts from people.
I want to retrieve these and post them in a linear format (as I currently
have), but...! I want to have pages, each page has 50 rows from the database at
a time.
If I have 102 results, I want it to be separated into three pages.
Page: 1, 2, 3
The page link I want to be displayed in the URL as a variable: page=1 (example).
Each row is ordered with a primary key
page=1 will return the first 50 results (1 - 50)
page=2 will return the next 50 results (51 - 100)
page=3 will return the next two results (101 - 102)
I want a system that will automatically do this. I want the page numbers to
increase along with how many results are in the database. At the moment there
are only three, but in time it will grow. So essentially it should start off at
Page: 1, then increase as I hit the 50th entry.
Is there anyone who can help me with this?
If you need more detail, please email me and I'll try to explain more in-depth!
Many thanks!
I hope you can help!
Thanks for your time all!
~Dan
Try something to the likes of this:
<?php
$pageid = intval($_GET['page']);
$startlimit = ($pageid - 1) * 50;
$endlimit = $pageid * 50;
mysql_query("SELECT * FROM yourtable LIMIT $startlimit , $endlimit");
?>
--- End Message ---
--- Begin Message ---
Dan
You may want to try the Pear Pager package:
http://www.google.com/search?q=php+pear+pager
[sorry for the missing link]
--
Thanks,
John
--- End Message ---