we have sybase db, and using odbc for queries in our
web based application.
i want to learn : in php, are sybase functions more
efficient than odbc functions?
Thanks...
emrah
__
Do you Yahoo!?
Yahoo! Search - Find what youre looking for faster
http://search.yahoo.
php-windows Digest 10 Mar 2004 08:40:20 - Issue 2157
Topics (messages 23087 through 23088):
Re: Removing extra slashes from a path
23087 by: Justin Patrin
sybase versus odbc
23088 by: emrahsen51.yahoo.com
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PR
Hello,
I am trying to authenticate my users to the LDAP directory on exchange 5.5.
Anyone has an idea on how to do it plz ??
I am using PHP discussion forum, MYSQL, and IIS as the web server. Any Help
would be highly appreciated.
Thanks a lot..
--
PHP Windows Mailing List (http://www.php.net/)
Hi Rabih!
Try PEAR::Auth package. http://pear.php.net/package/Auth
Regards,
Firman
- Original Message -
From: "Rabih" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, March 10, 2004 6:36 PM
Subject: [PHP-WIN] Help with authenication against exchange 5.5 through LDAP
> H
The sybase extension is probably more efficient than the odbc ext. You
can also try the odbtp extension at http://odbtp.sourceforge.net. I use
it to connect to Sybase, and it is considerably faster than the odbc
extension, and it provides more capabilities.
-- bob
On Wed, 10 Mar 2004 [EMAIL PRO
I have created a few reports using sql server and PHP. The reports work just
fine except that we have like 19000 records per report. I would like to do
some paging within the reports 1 | 2 | 3 | 4 so that a user can view may be
1000 records per page and can navigate to other pages if needed.
Help
Check out this tutorial:
http://www.phpnoise.com/tutorials/9/1
-Original Message-
From: Harpreet [mailto:[EMAIL PROTECTED]
Sent: 10 March 2004 4:26
To: [PHP-WIN]
Subject: [PHP-WIN] Paging using PHP and sql server
I have created a few reports using sql server and PHP. The reports work ju
I am using sql server and it does not support limit funtion
-Original Message-
From: David Felton [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 10, 2004 11:27 AM
To: Harpreet; [PHP-WIN]
Subject: RE: [PHP-WIN] Paging using PHP and sql server
Check out this tutorial:
http://www.phpnois
With SQL server you have to do something like
select top $number id from tablename
...
where id not in (select top $offset id from tablename)
where $number is the number of results you want and $offset is the offset
(surprisingly) The subselect needs to be the same as your main query in
e
First, as you might know, you can use "SELECT TOP ... FROM ...", but
that will probably not help you that very much.
But are you able to alter the tables, or do you have a numeric values in
some of the attributes with witch you can do "WHERE ... and
BETWEEN @min AND @max". Unless is in strict o
This seems to work preety nice but the only problme i am having is I want to
allow the user to sort by field names .
My sql works just fine without the order by clause.The order by clause keeps
returning the same values.
How can i use an order by clause
my sql is as follows
select top 50 matid,
php-windows Digest 10 Mar 2004 20:56:47 - Issue 2158
Topics (messages 23089 through 23097):
Help with authenication against exchange 5.5 through LDAP
23089 by: Rabih
23090 by: Firman Wandayandi
Re: sybase versus odbc
23091 by: Robert Twitty
Paging using PHP and sql
I have a problem. When I put 2 email addresses together it does not
send the email. The coding is like this:
$recipient = "[EMAIL PROTECTED], $_POST[email]";
The send form looks like this:
Everything works, the subject message etc. But when it is sent I do not
get any emails at all!!
Please
Will wrote:
I have a problem. When I put 2 email addresses together it does not
send the email. The coding is like this:
$recipient = "[EMAIL PROTECTED], $_POST[email]";
The send form looks like this:
$recipient = "[EMAIL PROTECTED], $_POST[email";
$mailheader .= "From: $_POST[email]\n"
Hi Harpeet,
Try using PEAR::Pager http://pear.php.net/package/Pager
Regards,
Firman
- Original Message -
From: "Harpreet" <[EMAIL PROTECTED]>
To: "[PHP-WIN]" <[EMAIL PROTECTED]>
Sent: Wednesday, March 10, 2004 11:25 PM
Subject: [PHP-WIN] Paging using PHP and sql server
> I have cre
If your code is exactly what you wrote, this line:
$recipient = "[EMAIL PROTECTED], $_POST[email";
should be:
$recipient = "[EMAIL PROTECTED], $_POST[email]";
Is it that?
> -Message d'origine-
> De : Will [mailto:[EMAIL PROTECTED]
> Envoyé : jeudi 11 mars 2004 01:33
> À :
16 matches
Mail list logo