[PHP] Re: displaying fixed number of records

2002-10-10 Thread DoL
Sorry I am working with flat file records. I have put all the records in an array, but would I be able to keep the values in the array and loop thru it for the subsequent pages (by calling the same page itself)? Thanks. "Dol" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECT

[PHP] displaying fixed number of records

2002-10-10 Thread DoL
Hi I would like to fixed the number of records for example 10 to be display on a web page. That is when there is more than 10 records, I would like to display a "2" for user to click on to display the second page starting with record number 11, and so on. Appreciate if someone can share their e

Re: [PHP] passing arrays between pages with serialize

2002-08-01 Thread DoL
Hi Valeri Thanks for your advise. I am new to php and have never used $_SESSION, is this the one that I need to session_register the variables/arrays? Thanks again. Dominic - Original Message - From: "Valeri Felberg" <[EMAIL PROTECTED]> To: "DoL" <[

Re: [PHP] passing arrays between pages with serialize

2002-08-01 Thread DoL
Thanks, I found the problem was with the creation of the 2-di array. - Original Message - From: "Martin Towell" <[EMAIL PROTECTED]> To: "'DoL'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, July 31, 2002 12:21 PM Subject: RE: [

[PHP] passing arrays between pages with serialize

2002-07-30 Thread DoL
Hi I would like to pass three arrays, two of them are two dimensional arrays, to another page (or to the same page just submit to itself) using hidden field and the function serialize. (this is a two dimensional array) page-1 $s_array1 = serialize($array1); page-2 $array1= unserialize(urlde

[PHP] OOH Forms ?

2002-07-15 Thread DoL
Hi there I came across with some reference indicating there was a library called OOH forms, wondering if anyone knows about the status of that lib, or has those features been incorporated into some others? OR simply, Is there any similar one, thanks. /dl -- PHP General Mailing List (http://

[PHP] creating multidimensional arrays

2002-07-01 Thread DoL
Hi All I want to create a multi dimensional arrays as below $result[$something]['$key_string_01] = value_01 $result[$something]['$key_string_02] = value_02 $result[$something]['$key_string_03] = value_03 $result[$something]['$key_string_04] = value_04 $result[$something][0] = value_06 $result[$s

[PHP] problem with PHP_SELF

2002-06-24 Thread DoL
Hi All I would like to submit a form to call itself, and according to some references I could use the $PHP_SELF variable in action attribute of the form element in a HTML document But it is not working for me, please help. I have this line of code in the html source page, I get Can anyone ad

[PHP] Console application with PHP

2002-05-16 Thread DoL
Hi All I am trying to write something similar to a server console display, is it a good idea to use PHP? Wondering how things like 1. server clock (similar to a clock applet) 2. server status can be displayed with PHP code? Note: I need to display the above two in a continuous fashion on the st