php-windows Digest 15 Mar 2003 08:34:11 -0000 Issue 1635
Topics (messages 19011 through 19018):
IDE's
19011 by: Beach, Jim
19017 by: Alexandru COSTIN
Global Variable Issues
19012 by: Cam
19013 by: The Head Sage
ODBC Query max()
19014 by: GeneralX
19015 by: Joe Goff
link error on compile php4ts.dsw - cannot open input file "zlib.lib"
19016 by: John M. Calvert
19018 by: Frank M. Kromann
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
Does anyone have experience with PHP integrated development
environments?
I have experience with Dreamweaver 4 and am considering upgrading to
Dreamweaver MX although I'm not sure it has as much PHP support as I'd
like. I'm also interested in Zend Studio v2.6 which is just released.
I'd appreciate any comments or suggestions. Thank you.
--- End Message ---
--- Begin Message ---
Hello,
Dreamweaver MX has all the support that you'd like if you also get our
(free and commercial) software development tools.
http://www.interakt.ro/products/
Alexandru
--
Alexandru COSTIN
Chief Operating Officer
http://www.interakt.ro/
+4021 411 2610
"Jim Beach" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Does anyone have experience with PHP integrated development
environments?
I have experience with Dreamweaver 4 and am considering upgrading to
Dreamweaver MX although I'm not sure it has as much PHP support as I'd
like. I'm also interested in Zend Studio v2.6 which is just released.
I'd appreciate any comments or suggestions. Thank you.
--- End Message ---
--- Begin Message ---
Through past releases of PHP, I've developed with global variables on.
These days it's becoming the trend, for security & asthetics purposes, to
turn global variables off... Let's say I have a $status variable that
changes depending upon the user's actions on the previous page and displays
a message...
Is there a way to propagate this variable through pages without 1) declaring
it as a global, 2) writing it to a cookie, 3) passing it through the URL or
4) passing it through a form w/ POST?
1-globals are now off
2-cookie writing is impracical & no desire to store 1 time information
client side
3-displaying the status message in the URL (or a status id) would look
unprofessional and allow for user manipulation of the message they see by
editing the URL string
4-not all my site's page transitions occur through forms, so I see no way to
use $_POST every time
I appreciate any suggestions & hearing your thoughts,
Cam
--- End Message ---
--- Begin Message ---
For the $status variable, sessions might help in passing the data along
pages.
-----Original Message-----
From: Cam [mailto:[EMAIL PROTECTED]
Sent: Saturday, March 15, 2003 12:10 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Global Variable Issues
Through past releases of PHP, I've developed with global variables
on.
These days it's becoming the trend, for security & asthetics purposes,
to
turn global variables off... Let's say I have a $status variable that
changes depending upon the user's actions on the previous page and
displays
a message...
Is there a way to propagate this variable through pages without 1)
declaring
it as a global, 2) writing it to a cookie, 3) passing it through the URL
or
4) passing it through a form w/ POST?
1-globals are now off
2-cookie writing is impracical & no desire to store 1 time information
client side
3-displaying the status message in the URL (or a status id) would look
unprofessional and allow for user manipulation of the message they see
by
editing the URL string
4-not all my site's page transitions occur through forms, so I see no
way to
use $_POST every time
I appreciate any suggestions & hearing your thoughts,
Cam
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
I'm trying to extract one record that has largest sequence ID number for an
employee, so I've tried below but doesn't work. Help.
$mQuery = "EmployeeID = '$user'";
$mCur = odbc_exec( $mCnx, "select ID=max(ID),Date,TimeIn,TimeOut,StationIP
from Clocks where $mQuery" );
--- End Message ---
--- Begin Message ---
should be something like :
select max(is) as id, ...
----- Original Message -----
From: "GeneralX" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, March 14, 2003 11:46 PM
Subject: [PHP-WIN] ODBC Query max()
> I'm trying to extract one record that has largest sequence ID number for
an
> employee, so I've tried below but doesn't work. Help.
>
> $mQuery = "EmployeeID = '$user'";
> $mCur = odbc_exec( $mCnx, "select ID=max(ID),Date,TimeIn,TimeOut,StationIP
> from Clocks where $mQuery" );
>
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--- End Message ---
--- Begin Message ---
Hi, I trying for the first time ever to compile PHP on my Windows 2000
machine using MS VC++ 6. I have been following the instructions in
/manual/en/install.windows.php. Everything goes fine until the linker kicks
in:
Linking...
LINK : fatal error LNK1181: cannot open input file "zlib.lib"
Error executing link.exe.
php.exe - 1 error(s), 21 warning(s)
I've spent a few hours poking at it but there is too much new to me to
figure my way out. The best I can figure is that zlib.lib should be in
win32build/lib but it isn't.
Can anyone help?
_________________________________________________________________
Add photos to your e-mail with MSN 8. Get 2 months FREE*.
http://join.msn.com/?page=features/featuredemail
--- End Message ---
--- Begin Message ---
the zlib extension is compiled in and you need to get the zlib module from
cvs.php.net.
- Frank
> Hi, I trying for the first time ever to compile PHP on my Windows 2000
> machine using MS VC++ 6. I have been following the instructions in
> /manual/en/install.windows.php. Everything goes fine until the linker
kicks
> in:
>
> Linking...
> LINK : fatal error LNK1181: cannot open input file "zlib.lib"
> Error executing link.exe.
>
> php.exe - 1 error(s), 21 warning(s)
>
> I've spent a few hours poking at it but there is too much new to me to
> figure my way out. The best I can figure is that zlib.lib should be in
> win32build/lib but it isn't.
>
> Can anyone help?
>
> _________________________________________________________________
> Add photos to your e-mail with MSN 8. Get 2 months FREE*.
> http://join.msn.com/?page=features/featuredemail
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--- End Message ---