[PHP] Multiple permisions, different sessions.

2004-10-22 Thread Pablo D Marotta
Hi, I´m developing an intranet on Apache-PHP-Mssql.
I need to know if there´s any way of managing users to have access to specific
areas inside my site, and at the same time, managing other users, giving them
permision to acces other areas only, because all of the codes and information
I´ve found (at least for Windows), simply give permission "to acces" and pass
the "login screen", but don´t limitate the users navigation priviledges.
Thanks in advance!

Paul from Argentina.



American Express made the following
 annotations on 10/22/04 06:06:01
--
**

 "This message and any attachments are solely for the intended recipient and may 
contain confidential or privileged information. If you are not the intended recipient, 
any disclosure, copying, use, or distribution of the information included in this 
message and any attachments is prohibited.  If you have received this communication in 
error, please notify us by reply e-mail and immediately and permanently delete this 
message and any attachments.  Thank you."

**

==

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



[PHP] Apache - IIS Migration

2005-04-18 Thread Pablo D Marotta
Hi there..

I´m using Apace 1.3.31 and PHP 4.3.8 in a Windows 2000 enviroment.

I´ll have to migrate the whole site to Windows 2003 enviroment, using IIS 6.0..
Should there be any problem about that, or not?

I mean, should it all go fine, or is it possible for the code to fail in some
parts?
Just in case you need to know, I´m using "register globals" on, and I´m also
using some Pear functions (Excel_Spreadsheet).

The people I´ve asked about this yet, have told me that it should go fine as
long as I keep the same PHP version.
(I should install PHP in the IIS, configure it to recognize the php files, and
then copy the php files)

Thank you all!
Pablo



American Express made the following
 annotations on 04/18/05 14:09:05
--
**

"This message and any attachments are solely for the intended recipient and may 
contain confidential or privileged information. If you are not the intended 
recipient, any disclosure, copying, use, or distribution of the information 
included in this message and any attachments is prohibited. If you have 
received this communication in error, please notify us by reply e-mail and 
immediately and permanently delete this message and any attachments. Thank you."

**
==

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



[PHP] Php defense

2005-04-22 Thread Pablo D Marotta
Hi there..
I`m defending the language, but people here want to migrate to asp..
They just keep on saying "php is not used for huge corporation solutions, there
asp goes better".

I know it isn´t correct, but I don´t know much about "well-known" websites
using php technology. (I just don´t navigate enough time to know it)
I think that could help a lot, since this people is highly influenced by that
kind of facts.. (I mean, knowing that other companies trust this language to
manage critical information).

Does anybody know/have any web-sites listing using php? If you only know a few
of those, it could help me too.

Thanks in advance!!
Pablo



American Express made the following
 annotations on 04/22/05 06:58:25
--
**

"This message and any attachments are solely for the intended recipient and may 
contain confidential or privileged information. If you are not the intended 
recipient, any disclosure, copying, use, or distribution of the information 
included in this message and any attachments is prohibited. If you have 
received this communication in error, please notify us by reply e-mail and 
immediately and permanently delete this message and any attachments. Thank you."

**
==

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



[PHP] Text Parser

2004-11-24 Thread Pablo D Marotta
Hi there...
I need to get a procedure able to do this:

1) Receive a string. For example: "name age address location".

2) Process that string, inserting "comas" between the words in the middle. For
example: "name,age,address,location". It´s important that the comas must be
inserted after the first word, and before the last one.

3) Return that string.

Any ideas?

Thanks!

Pablo



American Express made the following
 annotations on 11/24/04 11:34:02
--
**

 "This message and any attachments are solely for the intended recipient 
and may contain confidential or privileged information. If you are not the 
intended recipient, any disclosure, copying, use, or distribution of the 
information included in this message and any attachments is prohibited.  If you 
have received this communication in error, please notify us by reply e-mail and 
immediately and permanently delete this message and any attachments.  Thank 
you."

**

==

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



[PHP] Text Parser

2004-12-02 Thread Pablo D Marotta
Hi there..
A newbie issue:
I´m receiving this: "house , ball , door , roof , floor"
And I want to obtain this: "'house','ball','door','roof','floor'"

Maybe, I should use implode or explode, but I just can´t figure out how..
Help?



American Express made the following
 annotations on 12/02/04 08:13:28
--
**

 "This message and any attachments are solely for the intended recipient 
and may contain confidential or privileged information. If you are not the 
intended recipient, any disclosure, copying, use, or distribution of the 
information included in this message and any attachments is prohibited.  If you 
have received this communication in error, please notify us by reply e-mail and 
immediately and permanently delete this message and any attachments.  Thank 
you."

**

==

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



[PHP] smtp server

2004-12-16 Thread Pablo D Marotta
Hi there..
I´m trying to use the mail function but I have a problem. I´m working in a LAN
with more or less 30 pcs, that places inside a huge network, and I just can´t
use the enterprise smtp server.
How can i set a valid smtp server?
I thought about installing some "good-free" smtp server on my own pc, and then
use it for the mail function.
What do you think of this idea? Would you recommend any free smtp server
currently available?

Thanks!

Pablo Marotta



American Express made the following
 annotations on 12/16/04 07:43:19
--
**

 "This message and any attachments are solely for the intended recipient 
and may contain confidential or privileged information. If you are not the 
intended recipient, any disclosure, copying, use, or distribution of the 
information included in this message and any attachments is prohibited.  If you 
have received this communication in error, please notify us by reply e-mail and 
immediately and permanently delete this message and any attachments.  Thank 
you."

**

==

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


[PHP] newbie.. $_GET & $_POST

2005-01-03 Thread Pablo D Marotta
Hi there..
I need to pass variables to a page through an html link.
I do it like this:

Export

where 'buildQuery' is the variable I´m passing.

In the destination page, I capture it with $_GET and that´s it.

I want to know if there is any way of doing it without showing the variables in
the direction bar.

Thanks!

Pablo



American Express made the following
 annotations on 01/03/05 06:43:25
--
**

 "This message and any attachments are solely for the intended recipient 
and may contain confidential or privileged information. If you are not the 
intended recipient, any disclosure, copying, use, or distribution of the 
information included in this message and any attachments is prohibited.  If you 
have received this communication in error, please notify us by reply e-mail and 
immediately and permanently delete this message and any attachments.  Thank 
you."

**

==

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



[PHP] newbie.. $_GET & $_POST

2005-01-03 Thread Pablo D Marotta
Hi there..
I need to pass variables to a page through an html link.
I do it like this:

Export

where 'buildQuery' is the variable I´m passing.

In the destination page, I capture it with $_GET and that´s it.

I want to know if there is any way of doing it without showing the variables in
the direction bar.

Thanks!

Pablo



American Express made the following
 annotations on 01/03/05 06:54:38
--
**

 "This message and any attachments are solely for the intended recipient 
and may contain confidential or privileged information. If you are not the 
intended recipient, any disclosure, copying, use, or distribution of the 
information included in this message and any attachments is prohibited.  If you 
have received this communication in error, please notify us by reply e-mail and 
immediately and permanently delete this message and any attachments.  Thank 
you."

**

==

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



[PHP] Mssql Connection

2005-01-19 Thread Pablo D Marotta
Hi there..
I´m connecting to a Ms Sql Server 2000, with the system administrator´s name,
and its password.
It always works fine, but... I know it´s not the safest way of connecting, so I
want to use some ordinary user names and passwords.

The problem is that I just can´t make it work, it always throws username
errors.

How should I configure this, in order to connect to mssql with ordinary
usernames and passwords from php code?

Here is my function code:

function conectar ()
{
  $conexion = mssql_connect("localhost","sa","apr");
  if (!$conexion)
  {
?>

  
# Can´t establish connection with database server pc.
  



  
# Can´t establish connection with the specified database.
  

http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php