Re: [PHP] Hidden File Downloads

2005-04-25 Thread Pascal Polleunus
Stuart Nielson wrote: I am trying to setup a script that allows people to upload files for specific, permissions-based, projects. i.e. There are logs that are viewable to clients only after login. The admin also has the ability to upload files. These files should be associated with a particular

Re: [PHP] String conversion function

2003-07-09 Thread Pascal Polleunus
Simon Fredriksson wrote: I'm wondering if there's any easy way to convert special chars to the numerical version of it. Like space converts to %20 and slash (/) to %2F. rawurlencode is what you're looking for -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] php arrays into flash

2003-07-07 Thread Pascal Polleunus
Jim McNeely wrote: I know a lot more about php than about flash (which is probably sad) but does anyone know how to take info in an array and pass it into an array in flash? I think they have arrays, but the only thing I can seem to find in flash to get info from php is the loadvariable

Re: [PHP] php mysql_num_rows problem

2002-02-27 Thread Pascal Polleunus
with insert, update and delete you must use mysql_affected_rows() - Original Message - From: Rodrigo Peres [EMAIL PROTECTED] To: PHP [EMAIL PROTECTED] Sent: Wednesday, February 27, 2002 4:58 PM Subject: [PHP] php mysql_num_rows problem Hi list, I have a class to perform my tasks to

Re: [PHP] php mysql_num_rows problem

2002-02-27 Thread Pascal Polleunus
with insert, update and delete you must use mysql_affected_rows() http://www.php.net/manual/en/function.mysql-affected-rows.php - Original Message - From: Rodrigo Peres [EMAIL PROTECTED] To: PHP [EMAIL PROTECTED] Sent: Wednesday, February 27, 2002 4:58 PM Subject: [PHP] php

[PHP] simulate form submission

2001-06-19 Thread Pascal Polleunus
Hi, Does someone know how to simulate a form submission? I guess I need to do something like header(Location: http://www.mysite.com;); header($PostVarsData); where $PostVarsData must contains the header informations to send the post vars but what are these header informations?