php-windows Digest 10 Feb 2004 00:30:37 -0000 Issue 2114
Topics (messages 22774 through 22777):
Re: IMAGES IN DB
22774 by: Svensson, B.A.T. (HKG)
Re: problems with variables
22775 by: Luis Moreira
PHP in(e)ternal - how is return value handled?
22776 by: Svensson, B.A.T. (HKG)
php apache and multiple users
22777 by: Ricardo Oliveira
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 ---
Actually, I've never heard about a SELECT that can do that.
(Will, check out your link later.)
-----Original Message-----
From: hubo
To: [EMAIL PROTECTED]
Sent: 2004-02-08 19:10
Subject: [PHP-WIN] Re: IMAGES IN DB
> A comment on storing binary content in an RDBMS's:
>
> QUESTION: Is it possible to do a SELECT on an image that makes sence.
> ANSWER: no!
>
My answer is: Yes!
Have you never heard about the algorithm to compare and to sort (!)
pictures not only using their meta data but also by analyzing the image
data? Ask some people in some communication agencies. To find a picture
just somehow like another is a standard job. I have seen a lot of
demonstrations years ago. Well, they are ORDBMS's. Have a look at:
http://www.ibm.com/software/data/informix/blades/excaliburimage/
Sure, the most important arguement to put images into a database is to
eneasy the handling of these thousands or even much more files...
--- End Message ---
--- Begin Message ---
Your problem is in your "form_results.php3".
There are instructions badly terminated.
Look for missing quotes, for instance...
Luis
----- Original Message -----
From: "Svensson, B.A.T. (HKG)" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, February 07, 2004 9:42 PM
Subject: RE: [PHP-WIN] problems with variables
> I dopn't understand what you asking about (read: I don't bother to read
> through all clutter to figure it out), but you may want to have a look at:
>
> http://nl.php.net/manual/en/language.variables.external.php
>
>
> -----Original Message-----
> From: Ciro
> To: [EMAIL PROTECTED]
> Sent: 2004-02-07 19:40
> Subject: [PHP-WIN] problems with variables
>
> hi, i'm a new member from italy.
>
> just a simple question:
>
> why i have this output with my php script??
>
> SCRIPT
> <html>
> <head>
> <title>Entering Information into a Form</title>
> </head>
> <form action="form_results.php3" method="GET">
> <p>First Name: <input type="text" name="first_name">
> <br>Last Name: <input type="text" name="last_name">
> <br>Address: <input type="text" name="address">
> <br>City: <input type="text" name="city">
> <br>State: <input type="text" name="state">
> <br>Zip: <input type="text" name="zip">
> <br>Home Phone: <input type="text" name="home_phone">
> <p><input type="submit" name="Submit" value="Submit">
> <input type="Reset">
> </form>
> </body>
> </html>
>
> OUTPUT form_result.php3
> Below are the results of your Form Submission
> First Name: $first_name\n"); print("
> Last Name: $last_name\n"); print("
> Address: $address\n"); print("
> City: $city\n"); print("
> State: $state\n"); print("
> Zip: $zip\n"); print("
> Home Phone: $home_phone\n"); ?>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--- End Message ---
--- Begin Message ---
As an old brain damged C programmer I have a question
about PHP's behaviour when it returns data from a function:
How does PHP internally return data from a function?
Assume for instance this:
$job[JOB_STATUS] = $data[JOB_STATUS]);
$job[JOB_ID] = $data[JOB_ID]);
$job[JOB_DAY] = $data[JOB_DAY]);
$job[JOB_TIME] = $data[JOB_TIME]);
$job[JOB_CMD] = $data[JOB_CMD]);
return $job;
Will PHP internally return the data structure of $job via
the heap. i.e. a copy operation, or just a pointer to $job?
Or do I need to use reference in order to return a pointer,
or even if I uses a reference will php internaly copy data
via the heap and then give me a pointerto the copy - scary
thought -?
--- End Message ---
--- Begin Message ---
Hi all,
Can anyone tell me where I can find information about how to configure apache for windows with multiple users, each one with its own root directory. I want to allow the users to use php but I don't want the can see or even change the code from each other.
Thank's
Ricardo |
____________________________________________________
IncrediMail - O mundo do correio eletrônico finalmente desenvolveu-se - Clique aqui |
--- End Message ---