> -Original Message-
> From: Cheryl Sullivan [mailto:csull...@shh.org]
> Sent: Thursday, September 16, 2010 11:12 AM
> To: Tommy Pham; php-general@lists.php.net
> Subject: RE: [PHP] Session Vars loaded from MSSQL Query drop, those
> loaded from MYSQL Query stick
>
> Tommy - I ran phpinfo(
On Thu, 2010-09-16 at 14:07 -0400, Matt Neimeyer wrote:
> I know I could possibly hack something together using the Tidy
> libraries... (maybe...) but are there any existing php libraries /
> projects that already have the ability to take some HTML and
> "downgrade" the version of HTML being used.
On 16 September 2010 20:03, Cheryl Sullivan wrote:
> We are actually running the query through a function that removes single
> ticks, etc to avoid this, but I didn't think that was relevant to the
> question so I didn't include it. Thanks, though!
You're the one with the problem you don't under
On Thu, Sep 16, 2010 at 1:20 AM, Pete Ford wrote:
> On 15/09/10 18:00, David Harkness wrote:
>
>> $v = $row->xpath("//membernumber[. = \"$MemberId\"]");
>>
>
> Oooh, I hate using backslashes - they always seem so untidy...
> I have a pathological fear of sed scripts, too. :(
And yet I find them
On Thu, Sep 16, 2010 at 10:26 AM, Cheryl Sullivan wrote:
[snip]
> When I echo all five $_SESSION vars from here, they are all populated.
> Then I can either redirect or form post to the next page. In either
> case, the $_SESSION vars populated from SQL Server ( the SSN and Cost
> Center vars) are
Tommy - I ran phpinfo() but I don't see anything in it referencing
MSSQL or SQLSRV. I have included all the references to "sql" I see
below, but the only references I see to databases are to mySQL and
SQLLite. Unfortunately I don't have any control over how service-packed
the database server is.
I know I could possibly hack something together using the Tidy
libraries... (maybe...) but are there any existing php libraries /
projects that already have the ability to take some HTML and
"downgrade" the version of HTML being used.
One example: turn this...
Blah
... into ...
Blah
This
We are actually running the query through a function that removes single
ticks, etc to avoid this, but I didn't think that was relevant to the
question so I didn't include it. Thanks, though!
-Original Message-
From: Peter Lind [mailto:peter.e.l...@gmail.com]
Sent: Thursday, September 16
MikeB wrote:
Daniel Brown wrote:
On Mon, Sep 13, 2010 at 19:51, MikeB wrote:
As part of the bug report I included a link to an image of my nntp
config.
I saw that, thanks. I'll look into creating a mirror of the news
server, as well, for NNTP-only access. I won't lie and say that it's
a prio
On 16 September 2010 16:26, Cheryl Sullivan wrote:
> Absolutely -
>
>
>
> This is from the first page
>
>
>
>
> $_SESSION['UserLastName'] = strtolower(trim($_POST['txtLastName']));
>
> $_SESSION['BadgeID'] = trim($_POST['txtBadgeID']);
>
>
>
> //access MS SQL Server database
>
> $q1 = "select * f
> -Original Message-
> From: Cheryl Sullivan [mailto:csull...@shh.org]
> Sent: Thursday, September 16, 2010 8:33 AM
> To: Tommy Pham; php-general@lists.php.net
> Subject: RE: [PHP] Session Vars loaded from MSSQL Query drop, those
> loaded from MYSQL Query stick
>
> SQL Server 8.00.818 - SP
SQL Server 8.00.818 - SP3 (Enterprise Edition)
Unfortunately I am fairly new to PHP and my boss just went home sick for
the day, so I don't know how to answer the question about the extension.
Can you tell me where I can find that?
-Original Message-
From: Tommy Pham [mailto:tommy...@gm
On Thu, Sep 16, 2010 at 10:26 AM, Cheryl Sullivan wrote:
> Absolutely -
>
> This is from the first page
>
>
> $_SESSION['UserLastName'] = strtolower(trim($_POST['txtLastName']));
>
> $_SESSION['BadgeID'] = trim($_POST['txtBadgeID']);
>
> //access MS SQL Server database
>
> $q1 = "select * from em
Gary wrote:
Nathan Rixham wrote:
Gary wrote:
Can anyone tell me what the equivalent to the following command line
usage of openssl is, in php using the mcrypt_* functions, please:
,
| openssl enc -e -aes-256-cbc -k ...
`
TIA.
I tried
,
| $iv = mcrypt_create_iv(mcrypt_get_
> -Original Message-
> From: Cheryl Sullivan [mailto:csull...@shh.org]
> Sent: Thursday, September 16, 2010 7:12 AM
> To: php-general@lists.php.net
> Subject: [PHP] Session Vars loaded from MSSQL Query drop, those loaded
> from MYSQL Query stick
>
> Hi there – I’m new to this news group.
I have the following:
#!/usr/local/bin/php
Which returns:
machine1 (AST) PHP 5.2.6:
-10800
timestamp BETWEEN "2010-09-16 03:00:00" AND "2010-09-17 03:00:00"
machine2 (MST) PHP 5.1.6:
-21600
timestamp BETWEEN "1969-12-31 17:00:00" AND "1969-12-31 17:00:00"
Aside from upgrading the second box,
At 8:46 AM -0400 9/15/10, Peter van der Does wrote:
Hi,
How do you people store data that doesn't change, an example of this
would be the version number of your software. You might want to use it
through out your program but how to you store it?
As far as I can see there are several options to
Hi all!!
I have a server running:
Debian Lenny
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1
PHP/5.2.6-1+lenny9 with Suhosin-Patch
Clients connect to the system using firefox browser (all of them), and
some of them have cloned machines (win 7 - Norton Ghost). I mention
this in case that the session id g
Absolutely -
This is from the first page
fields("emp_ssn");
$_SESSION['CostCenter'] = $rs_emp_info->fields("emp_costcenter");
//access mySQL database
$cnx = mysql_connect("localhost","userID","password");
$db = mysql_select_db("database_name");
$q1 = "select * from tblmainempreport
Hi:
I am working with a xml document that is validate with a schema.
Within php the xml does not validate, but if i use a external validator the
same xml validates with no problems.
My Php is now 5.2.14, but i test with 5.3.1 and the same problem.
I create a small program as example:
libxml_us
On Thu, 2010-09-16 at 10:11 -0400, Cheryl Sullivan wrote:
> Hi there – I’m new to this news group. Any help with this is appreciated –
>
> When I populate session vars from a MYSQL query, they are still there when I
> change pages. If I populate them from an MSSQL query, they drop.
>
> It d
Hi there – I’m new to this news group. Any help with this is appreciated –
When I populate session vars from a MYSQL query, they are still there when I
change pages. If I populate them from an MSSQL query, they drop.
It doesn't matter if I get to the next page using a header redirect or a fo
Floyd Resler wrote:
I need to send encrypted email. Can I use our server's signed certificate we
use for Apache?
Yes you can use the servers certificate, you can use any x509
certificate you like - however, I'd recommend checking out startssl.org
who will give you a free smime certificate.
Gary wrote:
Can anyone tell me what the equivalent to the following command line
usage of openssl is, in php using the mcrypt_* functions, please:
,
| openssl enc -e -aes-256-cbc -k ...
`
TIA.
I tried
,
| $iv = mcrypt_create_iv(mcrypt_get_block_size(MCRYPT_RIJNDAEL_256,
|
On Thu, 2010-09-16 at 14:08 +0200, Carlos Medina wrote:
> Hi all,
> i am looking for a solution (approaching) for the following problem:
>
> My Application (PHP 5+, MySQL, Zend Framework) works fine. But unter the
> citrix terminal server allow to all user to see the informations
> (session dat
Hi all,
i am looking for a solution (approaching) for the following problem:
My Application (PHP 5+, MySQL, Zend Framework) works fine. But unter the
citrix terminal server allow to all user to see the informations
(session data) of the last user. I think this is because all user of the
termin
On 15/09/10 18:00, David Harkness wrote:
And let's not forget
$v = $row->xpath("//membernumber[. = \"$MemberId\"]");
The \" inside the string turns into a double-quote and using " to delimit
the string allows for variable substitution.
Oooh, I hate using backslashes - they always seem so unt
27 matches
Mail list logo