name. 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
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
d unintelligent
(Oh noes . . . 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
an, there's the php.ini . . . Otherwise 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
can't parse your included file.
David Hall
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
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 wrapp
from http://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
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
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 unsu
modify_values2.php
++
You'll want to do something like:
$id = mysql_real_escape_string($_GET['id']);
$sql = "Select * from leaderboard WHERE ID='$id'";
David Hall
--
PHP Gener
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
l my script into thinking
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]
Subje
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
13 matches
Mail list logo