[PHP] users online

2005-05-01 Thread Anasta
Hi, is this possible-- I need a user (already logged in) to click on a button and his username shown in a text box next to it. This is for a chat and they need to be seated similar to poker game where they sit-in/sit out. Any help apreciated ! -- PHP General Mailing List (http://www.php.net/)

[PHP] Starting a big project

2005-05-01 Thread Danny Brow
I'm about to start writing a big web app (mostly in PHP). But I'm not sure if I should layout the DB first then write the app, or should I just start writing the app and add stuff to the DB as I need it. How do you guys go about it? Thanks, Dan. -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Starting a big project

2005-05-01 Thread Miles Thompson
By asking What do I need from the app? or What questions will the app have to answer? or What information does the client want? and going from there. Those are all just about the same question. From there you can determine needed inputs, tables, keys, etc. Cheers - Miles At 01:45 PM 5/1/2005,

RE: [PHP] Starting a big project

2005-05-01 Thread Mike
I'm about to start writing a big web app (mostly in PHP). But I'm not sure if I should layout the DB first then write the app, or should I just start writing the app and add stuff to the DB as I need it. How do you guys go about it? Thanks, Dan. Dan, The single-greatest thing you

[PHP] php5-mysqli

2005-05-01 Thread NSK
hi how can I ensure that php5-mysqli is correctly loaded? the server is SuSE9.3 and I have installed the package from yast, but one app (phpmyadmin) says it cannot find the mysql extension (although other apps can query the db). which config files are responsible for loading mysqli in

Re: [PHP] Starting a big project

2005-05-01 Thread Danny Brow
On Sun, 2005-05-01 at 18:53 +0200, Gabriel Birke wrote: You could avoid the decision if you use the O/R mapper propel: http://propel.phpdb.org/wiki/ I'm using Pear DB (via PG). And then I'm going to port to postgresql. I've got most of the tools I'm going to use for the project worked out.

[PHP] Re: Starting a big project

2005-05-01 Thread Sandy Keathley
I'm about to start writing a big web app (mostly in PHP). But I'm not sure if I should layout the DB first then write the app, or should I just start writing the app and add stuff to the DB as I need it. How do you guys go about it? You can't predict everything, but if you don't try to

[PHP] Problem with array

2005-05-01 Thread Murray @ PlanetThoughtful
Hi All, I have 2 function, 1 which calls another, that I am attempting to use in a page with, currently, some problems. In essence, I have a hierarchical recordset table called tbl_content (contid and parid, where parid contains the contid of the record to which the current record

[PHP] Re: Starting a big project

2005-05-01 Thread Manuel Lemos
Hello, on 05/01/2005 01:45 PM Danny Brow said the following: I'm about to start writing a big web app (mostly in PHP). But I'm not sure if I should layout the DB first then write the app, or should I just start writing the app and add stuff to the DB as I need it. How do you guys go about it? If

Re: [PHP] php5-mysqli

2005-05-01 Thread Greg Donald
On 5/1/05, NSK [EMAIL PROTECTED] wrote: how can I ensure that php5-mysqli is correctly loaded? if( !in_array( 'mysqli', get_loaded_extensions() ) ) { if( !dl( 'mysqli.so' ) ) { echo mysqli.so extension is not loaded; } } the server is SuSE9.3 and I have installed the

Re: [PHP] Problem with array

2005-05-01 Thread Richard Lynch
On Sun, May 1, 2005 10:21 am, Murray @ PlanetThoughtful said: ? function listProjectChildren($contid, $list=''){ if ($contid''){ $arrtree = array(); $arrtree = buildProjectTree($contid, $level=1); for

Re: [PHP] users online

2005-05-01 Thread Richard Lynch
On Sun, May 1, 2005 1:35 am, Anasta said: Hi, is this possible-- I need a user (already logged in) to click on a button and his username shown in a text box next to it. This is for a chat and they need to be seated similar to poker game where they sit-in/sit out. ?php echo $name;? What am

[PHP] automatic PHP Template engine

2005-05-01 Thread Evert | Rooftop Solutions
Hi, I'm working on a template engine, and I want my template engine to be automaticly started when a .stl file is called from the browser. I know this can be done with mod_rewrite, but I really need a platform-independant solution. Has anybody some ideas on how to make it work everywhere

RE: [PHP] Problem with array

2005-05-01 Thread Murray @ PlanetThoughtful
Hi Richard, Color me confused. I removed global $arrtree; and added $arrtree = array(); to the function buildProjectTree() and now the parent function (listProjectChildren) returns no values at all. I've checked the page from which listProjectChildren() is being called, and $arrtree does not

Re: [PHP] Splitting Vars from MySQL in PHP

2005-05-01 Thread Richard Lynch
On Sat, April 30, 2005 8:16 pm, Rasmus Lerdorf said: php -a ?php $foo = array('a'='apple', 'b'='banana', 'c'='coconut'); while (list($k, $v) = each($foo)){ echo $k: $v\n; } ? Content-type: text/html X-Powered-By: PHP/4.3.11 a: apple b: banana c: coconut It has worked just

RE: [PHP] Problem with array

2005-05-01 Thread Richard Lynch
On Sun, May 1, 2005 1:08 pm, Murray @ PlanetThoughtful said: Color me confused. I removed global $arrtree; and added $arrtree = array(); to the function buildProjectTree() and now the parent function (listProjectChildren) returns no values at all. I've checked the page from which

Re: [PHP] automatic PHP Template engine

2005-05-01 Thread Richard Lynch
On Sun, May 1, 2005 12:54 pm, Evert | Rooftop Solutions said: I'm working on a template engine, and I want my template engine to be automaticly started when a .stl file is called from the browser. I know this can be done with mod_rewrite, but I really need a platform-independant solution. Has

RE: [PHP] Problem with array

2005-05-01 Thread Murray @ PlanetThoughtful
-Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Monday, 2 May 2005 6:16 AM To: Murray @ PlanetThoughtful Cc: php-general@lists.php.net Subject: RE: [PHP] Problem with array On Sun, May 1, 2005 1:08 pm, Murray @ PlanetThoughtful said: Color me confused. I

[PHP] empty function and array indices

2005-05-01 Thread Gabriel Birke
Hello! Suppose I have the following code: $a = array('a'=1, 'b'=2); echo empty($a['c'])?'empty':'not empty'; echo $a['c']; Why doesn't the 2nd line output a warning when error_reporting is set to E_ALL? Is empty() some kind of special function where the validity of indices is not checked? If

Re: [PHP] empty function and array indices

2005-05-01 Thread Rasmus Lerdorf
Gabriel Birke wrote: Hello! Suppose I have the following code: $a = array('a'=1, 'b'=2); echo empty($a['c'])?'empty':'not empty'; echo $a['c']; Why doesn't the 2nd line output a warning when error_reporting is set to E_ALL? Is empty() some kind of special function where the validity of indices is

Re: [PHP] empty function and array indices

2005-05-01 Thread Mark Cain
From the Manual: empty() is the opposite of (boolean) var, except that no warning is generated when the variable is not set It appears that there is a revamp of what is considered to be empty in PHP 5. http://php.net/empty You might be better served with array_key_exists() such as: echo

Re: [PHP] php5-mysqli

2005-05-01 Thread Marek Kilimajer
NSK wrote: hi how can I ensure that php5-mysqli is correctly loaded? the server is SuSE9.3 and I have installed the package from yast, but one app (phpmyadmin) says it cannot find the mysql extension (although other apps can query the db). which config files are responsible for loading mysqli

Re: [PHP] empty function and array indices

2005-05-01 Thread Richard Lynch
On Sun, May 1, 2005 1:47 pm, Gabriel Birke said: Is empty() some kind of special function where the validity of indices is not checked? Bingo! That's rather the whole point of empty and isset. :-) The behaviour of empty has changed over time, with various releases. isset seems more stable in

RE: [PHP] Problem with array

2005-05-01 Thread Richard Lynch
On Sun, May 1, 2005 1:46 pm, Murray @ PlanetThoughtful said: -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Monday, 2 May 2005 6:16 AM To: Murray @ PlanetThoughtful Cc: php-general@lists.php.net Subject: RE: [PHP] Problem with array On Sun, May 1, 2005 1:08

[PHP] form array

2005-05-01 Thread Sebastian
i've created file upload scripts in the past that allows multi-upload inputs using the bracket [] array in form. so now i have to create the same type of script but each file input field will also be followed by a text box for a file caption type thing. what would i used for the input text box?

Re: [PHP] automatic PHP Template engine

2005-05-01 Thread Evert | Rooftop Solutions
Richard Lynch wrote: On Sun, May 1, 2005 12:54 pm, Evert | Rooftop Solutions said: I'm working on a template engine, and I want my template engine to be automaticly started when a .stl file is called from the browser. I know this can be done with mod_rewrite, but I really need a

[PHP] Newbie Help

2005-05-01 Thread Thomas Bonham
Hello All, First of I'm new to this a hop I'm doing this right. If some one can help me with my web site page. I'm trying to make it call a page and I get a error line 42. Error: http://bonhamlinux.org/idex.php?page=links/index.php The code that I'm trying to do this is the following: ?php

[PHP] Newbie Help

2005-05-01 Thread Thomas Bonham
Hello All, First of I'm new to this a hop I'm doing this right. If some one can help me with my web site page. I'm trying to make it call a page and I get a error line 42. Error: http://bonhamlinux.org/idex.php?page=links/index.php The code that I'm trying to do this is the following: ?php

Re: [PHP] Newbie Help

2005-05-01 Thread Andre Dubuc
On Sunday 01 May 2005 10:39 pm, Thomas Bonham wrote: Hello All, First of I'm new to this a hop I'm doing this right. If some one can help me with my web site page. I'm trying to make it call a page and I get a error line 42. Error: http://bonhamlinux.org/idex.php?page=links/index.php The

Re: [PHP] Newbie Help

2005-05-01 Thread Thomas Bonham
Andre Dubuc wrote: On Sunday 01 May 2005 10:39 pm, Thomas Bonham wrote: Hello All, First of I'm new to this a hop I'm doing this right. If some one can help me with my web site page. I'm trying to make it call a page and I get a error line 42. Error:

Re: [PHP] Newbie Help

2005-05-01 Thread Mark Cain
Perhaps the path to the included files is incomplete: according to your error message you are trying to open links/index.php.php Does it need both of the dot php's ?? Would it help to include the full path to the includes such as: /home/bonhamli/public_html/links/index.php.php so something

Re: [PHP] Newbie Help

2005-05-01 Thread Thomas Bonham
I Think the .php.php is the problem but I don't know have to fix it. Let me know if you won't to see the full src page. Thomas Mark Cain wrote: Perhaps the path to the included files is incomplete: according to your error message you are trying to open links/index.php.php Does it need both of the

Re: [PHP] Newbie Help

2005-05-01 Thread Thomas Bonham
Here is all of the page, except one or two and the images. Thomas --- Mark Cain [EMAIL PROTECTED] wrote: YES let see the src - Original Message - From: Thomas Bonham [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Sunday, May 01, 2005 11:31 PM Subject: Re: [PHP] Newbie Help

Re: [PHP] Newbie Help

2005-05-01 Thread Mark Cain
first remove the space between GET and [ I think this keeps your script from find the variable page secondly the variable page already has the php extension being passed to it via the GET statement make the include like: {include($_GET['page']);} try it and let us know. Mark Cain The code

Re: [PHP] Newbie Help

2005-05-01 Thread Mark Cain
Also, after I looked at more of your code you will need to specify the php extension in only one of two places. Currently you are specifying it in 1) the code below and in 2) nav.php and in nav.php you don't have it specified for the main but you do for the other links. That means that the code

[PHP] Submit name change

2005-05-01 Thread Anasta
I need this to change the value of the button 'sit in' to the name of a user --it doesnt work so anyone got any ideas or is what i am looking to do impossible. Either the button name can show the username or a text field can change from blank to show the username when clicked. FORM