Re: [PHP] ID vs NAME in different browsers

2006-01-28 Thread David Hall
. If you used id for these multiple elements, you would be breaking the rules of html saying only one element can have a certain id . . .) David Hall -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: doubt regarding while loop

2006-01-27 Thread David Hall
suresh kumar wrote: while(list(t1,t2,...)=mysql_fetch_row($result)): do you mean to use: while(list($t1, $t2, . . .) = mysql_fetch_row($result)): David Hall -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] way to write mysqli result set to disk

2006-01-25 Thread David Hall
. . . http://dev.mysql.com/doc/refman/5.1/en/select.html Select statements are a mysql 5.1 only feature. We're gonna die . . .) David Hall -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php5.0.5 include() terminates script BUGBUGBUGBUG

2006-01-20 Thread David Hall
. David Hall -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Managing sessions...

2006-01-20 Thread David Hall
use includes like the other poster said Also, if you can't change the php.ini, but you're on an apache server, see this stuff http://us2.php.net/manual/en/configuration.changes.php David Hall -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: creating new class from wrapper class (OOP question)

2006-01-19 Thread David Hall
Henrik Gemal wrote: In a image gallery I have to class'es: class GPicFilePicture extends GPicFileType class GPicFileMovie extends GPicFileType both of them are based on: abstract class GPicFileType In my code I need to create a new GPicFilePicture. To avoid duplicated code I've create a

[PHP] Re: PHP for Mac

2006-01-15 Thread David Hall
://ming.sourceforge.net/ (which is a whole different world that I can't help you with. But those directions gave me php 5 on my powerbook, so . . . David Hall -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP interference in frames

2005-12-23 Thread David Hall
Albert wrote: same server at the same time. Don't know where to change it in Mozilla. type about:config in browser window network.http.max-persistent-connections-per-server in the line the default value is 2, so I think that's our answer David Hall -- PHP General Mailing List (http

[PHP] Re: insert to DB

2005-12-18 Thread David Hall
.; } } ? You don't set id in this case. Of course, from some of your other code, it looks like you're relying on register_globals to be on, so maybe it is and that's not why. David Hall -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Need help with modifying values

2005-12-18 Thread David Hall
* from leaderboard WHERE ID='$id'; David Hall -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: Fw: [PHP] Load from db into select-list

2005-12-18 Thread David Hall
Gustav Wiberg wrote: Ajax? What is that? http://en.wikipedia.org/wiki/AJAX php is a server side language, so you must refresh the page to have php do it directly, so using AJAX, you can talk to the server from the page. D. Hall -- PHP General Mailing List (http://www.php.net/) To

[PHP] .htaccess and determining if a user is logged in

2001-07-24 Thread David Hall
I'm using Apache .htaccess to require certain users to log into the system in order to view certain files. However, on one of my php scripts, it's not within the realm of .htaccess protection. How do I determine if the user viewing the page is an authenticated user or not? I want to present these

RE: [PHP] .htaccess and determining if a user is logged in

2001-07-24 Thread David Hall
Apache sent it. I'll have to check into that one. Any better ideas? -Original Message- From: David Hall Sent: Tuesday, July 24, 2001 6:15 PM To: [EMAIL PROTECTED] Subject:[PHP] .htaccess