php-general Digest 18 Jul 2010 19:01:41 -0000 Issue 6852

2010-07-18 Thread php-general-digest-help
php-general Digest 18 Jul 2010 19:01:41 - Issue 6852 Topics (messages 306970 through 306971): Re: recursive 306970 by: Ashley Sheridan Getting only attribute and not its values when doing LDAP calls to 2003 AD server 306971 by: Unix Nair Administrivia: To subscribe to

Re: [PHP] recursive

2010-07-18 Thread Ashley Sheridan
On Sun, 2010-07-18 at 09:49 +0430, shahrzad khorrami wrote: hi all :) here is a xml file: directive rule rules rule /rule rule /rule /rules /rule /directive directive rule rules rule /rule rule

[PHP] Getting only attribute and not its values when doing LDAP calls to 2003 AD server

2010-07-18 Thread Unix Nair
Hi I followed the examples mentioned in ldap functions pages at www.php.nethttp://www.google.com/url?sa=Dq=www.php.netusg=AFQjCNHoc0Ba_1Imkk_33DysfxCk38dNag. But I am getting only the attribute names and not the values stored in attributes array. Can some one give me some tips to fix my issue.

Re: [PHP] Getting only attribute and not its values when doing LDAP calls to 2003 AD server

2010-07-18 Thread Nathan Nobbe
On Sun, Jul 18, 2010 at 1:01 PM, Unix Nair tarik...@gmail.com wrote: Hi I followed the examples mentioned in ldap functions pages at www.php.net http://www.google.com/url?sa=Dq=www.php.netusg=AFQjCNHoc0Ba_1Imkk_33DysfxCk38dNag . But I am getting only the attribute names and not the values

[PHP] handing over data between two PHP connections

2010-07-18 Thread tobias . mueller13
Hello everybody For a science project I am working on a mechanism that hands over data from a smartphone to a web-browser (=Internet PC). Both connect to a PHP server. The PHP server has to receive the data (=some kind of an URL) on the smartphone end and deliver it to the browser end. Up to

Re: [PHP] handing over data between two PHP connections

2010-07-18 Thread Ashley Sheridan
On Sun, 2010-07-18 at 21:27 +0200, tobias.muelle...@web.de wrote: Hello everybody For a science project I am working on a mechanism that hands over data from a smartphone to a web-browser (=Internet PC). Both connect to a PHP server. The PHP server has to receive the data (=some kind of

Re: [PHP] handing over data between two PHP connections

2010-07-18 Thread Floyd Resler
On Jul 18, 2010, at 3:27 PM, tobias.muelle...@web.de wrote: Hello everybody For a science project I am working on a mechanism that hands over data from a smartphone to a web-browser (=Internet PC). Both connect to a PHP server. The PHP server has to receive the data (=some kind of an

[PHP] functions and global variables

2010-07-18 Thread David Mehler
Hello, I've got a file with a variable declared in it. For purposes of this post: $name = $_POST['name']; Now a little later in the same file I have a custom function call that outputs some information. In that information is an echo statement outputting $name: echo $name; I'm wondering do I

Re: [PHP] functions and global variables

2010-07-18 Thread Paul M Foster
On Sun, Jul 18, 2010 at 06:37:30PM -0400, David Mehler wrote: Hello, I've got a file with a variable declared in it. For purposes of this post: $name = $_POST['name']; Now a little later in the same file I have a custom function call that outputs some information. In that information is

[PHP] MySQL Query Puzzle

2010-07-18 Thread Peter
Hi All, I have a table which contain's some duplicate rows. I just want to delete the duplicate records alone not original records. Assume my table as look as below column1 column2 1 a 1 a 2 b 3 c 3 c i want the above table need to be as below,

[PHP] help using phpadmin

2010-07-18 Thread Isaac Lee
this is the second time that i have made an account and set the password. then when i try to reaccess phpadmin, it shows this message: Error MySQL said: #1045 - Access denied for user 'root'@'localhost' (using password: NO) What am supposed to do so that my regain access to phpadmin?  edit

Re: [PHP] MySQL Query Puzzle

2010-07-18 Thread Paul M Foster
On Mon, Jul 19, 2010 at 10:14:30AM +0530, Peter wrote: Hi All, I have a table which contain's some duplicate rows. I just want to delete the duplicate records alone not original records. Assume my table as look as below column1 column2 1 a 1 a 2 b 3 c 3

Re: [PHP] MySQL Query Puzzle

2010-07-18 Thread Shafiq Rehman
On Mon, Jul 19, 2010 at 10:44 AM, Peter pet...@egrabber.com wrote: Hi All, I have a  table which contain's some duplicate rows. I just want to delete the duplicate records alone not original records. Assume my table as look as below column1 column2 1        a 1        a 2        b

RE: [PHP] help using phpadmin

2010-07-18 Thread Carlos Sura
Hello Isaac Lee. Are you running on Linux or Windows? You might try: mysql SET PASSWORD FOR ‘root’@'localhost’ = PASSWORD(’yourpassword’); Then restart your service -if needed- If not... Try to edit config.inc.php file. Regards, Carlos Sura -Original Message- From: Isaac Lee