Re: [PHP] Uploading a directory of files

2004-07-16 Thread xin
Ryan Schefke wrote:
Does anyone have a script to upload a directory full of files?

.something like a recursive upload.

Thanks,
Ryan
 

You can use a JavaApplet and php script to upload as many files as you 
want. We have used one in our project.

yours,
xin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] File Upload Question

2004-07-12 Thread xin
you might need to resolve to Java applet or other means to select more than
one files at same time. The following is an example:

http://barleypop.vrac.iastate.edu/BarleyBase/test/upload/version_05/Upload.php

yours,
xin


- Original Message - 
From: Vail, Warren [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, July 12, 2004 12:15 PM
Subject: [PHP] File Upload Question


 Perhaps this is more about HTML than PHP, but the PHP $_FILES var seems to
 be set up to allow a list of files to be uploaded.  How does one get the
 pop-up window to allow a user to select (ctrl-click or whatever) multiple
 files in the same pop-up window?  Everything I have tried has left the
user
 restricted to selecting one file only.

 thanks in advance.

 Warren Vail




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Any suggestion for my php project?

2004-07-09 Thread xin
hi, all:
We have a bioinformatic website that focus on experiment submission and 
data analysis. The old site was written in PHP. Now, we try to 
re-organize the website to make it easier to browser. One of the 
chanllenges is tracking the logged-in user's activity so that we can 
show which experiment, dataset, tool the user is using. Someone 
suggested PHPNUKE.  I am not sure whether it can meet our tracking of 
user. In  addition, we got tons of forms and pages. It might difficult 
to convert them. Would you please give us some good suggestion for some 
packages? It does not matter whether it is open source or not. Thanks.

yours,
xin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] how can php get the values of a group of checkbox

2002-11-21 Thread Xin Qi
hi there,

if i have a group of checkboxes, and they have the SAME name, when they are
submited into a php script, how can this php file get the value of each
checkbox?

since they have the same name, $_GET[checkbox_name] only returns the last
one.

thanks



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] how can php get the values of a group of checkbox

2002-11-21 Thread Xin Qi
RE: [PHP] how can php get the values of a group of checkboxthank you, but what if all 
the checkboxes are generated dynamicly? I mean, I do not know how many checkboxes 
where will be until the php script generate the html page completely. if i have them 
unique names, it is kind of boring when php loads $_GET[] because it will be 
$_GET[$one_variable]. 

For a group checkboxes with the same name, there will be no such problem. 
  - Original Message - 
  From: Van Andel, Robert 
  To: Xin Qi ; [EMAIL PROTECTED] 
  Sent: Thursday, November 21, 2002 4:26 PM
  Subject: RE: [PHP] how can php get the values of a group of checkbox


  Check boxes should not be given the same name.  Radio buttons should to denote a 
grouping.  In other words, if you want to have a bunch of radio buttons indicating a 
choice between items (say bananas, oranges, and apples), you would name them the same 
thing and give them each a different value.  Checkboxes need to be given unique names 
to identify them.  Using the example above, you would have three check boxes one 
called bananas, one called oranges and one called apples.  They are given the value of 
true when they are submitted.  You could probably hard code the value as well, but I 
rarely do so.

  Robbert van Andel 



  -Original Message- 
  From: Xin Qi [mailto:[EMAIL PROTECTED]] 
  Sent: Thursday, November 21, 2002 11:14 AM 
  To: [EMAIL PROTECTED] 
  Subject: [PHP] how can php get the values of a group of checkbox 



  hi there, 

  if i have a group of checkboxes, and they have the SAME name, when they are 
  submited into a php script, how can this php file get the value of each 
  checkbox? 

  since they have the same name, $_GET[checkbox_name] only returns the last 
  one. 

  thanks 




  -- 
  PHP General Mailing List (http://www.php.net/) 
  To unsubscribe, visit: http://www.php.net/unsub.php 



   The information transmitted is intended only for the person or entity to which it 
is addressed and may contain confidential and/or privileged material. Any review, 
retransmission, dissemination or other use of, or taking of any action in reliance 
upon, this information by persons or entities other than the intended recipient is 
prohibited. If you received this in error, please contact the sender and delete the 
material from all computers. 





Re: [PHP] how can php get the values of a group of checkbox

2002-11-21 Thread Xin Qi
RE: [PHP] how can php get the values of a group of checkboxbut the question is how to 
determine the times of loop? the upper bound is hard to find. and the loop does cost 
time though it is not so much.  
  - Original Message - 
  From: Van Andel, Robert 
  To: Xin Qi ; [EMAIL PROTECTED] 
  Sent: Thursday, November 21, 2002 7:18 PM
  Subject: RE: [PHP] how can php get the values of a group of checkbox


  Use an array (checkbox[1], checkbox[2]).  Then use a loop to pull get the data after 
posting.  If you expect only one choice, use a radio button.

  Robbert van Andel 

  -Original Message- 
  From: Xin Qi [mailto:[EMAIL PROTECTED]] 
  Sent: Thursday, November 21, 2002 1:54 PM 
  To: Van Andel, Robert; [EMAIL PROTECTED] 
  Subject: Re: [PHP] how can php get the values of a group of checkbox 



  RE: [PHP] how can php get the values of a group of checkboxthank you, but what if 
all the checkboxes are generated dynamicly? I mean, I do not know how many checkboxes 
where will be until the php script generate the html page completely. if i have them 
unique names, it is kind of boring when php loads $_GET[] because it will be 
$_GET[$one_variable]. 

  For a group checkboxes with the same name, there will be no such problem. 
- Original Message - 
From: Van Andel, Robert 
To: Xin Qi ; [EMAIL PROTECTED] 
Sent: Thursday, November 21, 2002 4:26 PM 
Subject: RE: [PHP] how can php get the values of a group of checkbox 



Check boxes should not be given the same name.  Radio buttons should to denote a 
grouping.  In other words, if you want to have a bunch of radio buttons indicating a 
choice between items (say bananas, oranges, and apples), you would name them the same 
thing and give them each a different value.  Checkboxes need to be given unique names 
to identify them.  Using the example above, you would have three check boxes one 
called bananas, one called oranges and one called apples.  They are given the value of 
true when they are submitted.  You could probably hard code the value as well, but I 
rarely do so.

Robbert van Andel 




-Original Message- 
From: Xin Qi [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, November 21, 2002 11:14 AM 
To: [EMAIL PROTECTED] 
Subject: [PHP] how can php get the values of a group of checkbox 




hi there, 

if i have a group of checkboxes, and they have the SAME name, when they are 
submited into a php script, how can this php file get the value of each 
checkbox? 

since they have the same name, $_GET[checkbox_name] only returns the last 
one. 

thanks 





-- 
PHP General Mailing List (http://www.php.net/) 
To unsubscribe, visit: http://www.php.net/unsub.php 




 The information transmitted is intended only for the person or entity to which 
it is addressed and may contain confidential and/or privileged material. Any review, 
retransmission, dissemination or other use of, or taking of any action in reliance 
upon, this information by persons or entities other than the intended recipient is 
prohibited. If you received this in error, please contact the sender and delete the 
material from all computers. 





   The information transmitted is intended only for the person or entity to which it 
is addressed and may contain confidential and/or privileged material. Any review, 
retransmission, dissemination or other use of, or taking of any action in reliance 
upon, this information by persons or entities other than the intended recipient is 
prohibited. If you received this in error, please contact the sender and delete the 
material from all computers. 





[PHP] exec problem

2002-08-08 Thread Li, Xin

Hi,

I want to launch a program which writes a file on the
server. But the process is under the owner of
webuser who doesn't have write permission, and I
don't want to set the directory writable to all users.
I've searched the doc and tried every way but couldn't
find a solution. Anybody knows how to solve this?

BTW, my php is a pretty old version and doesn't
support suexec and ftp functions.

Thanks a lot

Xin Li


__
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php