Michael A. Peters wrote:
http://www.clfsrpm.net/php53/
I just have to try to rebuild some of the pecl modules, and test it to
make sure the build doesn't segfault or give me the finger or anything
rude like that before I upload the src.rpm.
Ugh - limited testing shows the interpreter work
On Tue, 30 Jun 2009 18:31:54 -0500, Flint Million wrote:
> Suppose I have some kind of check variable - say for example
> $abort_now. Or it could be a function. Something to be evaluated to a
> value.
>
> I want to execute a block of statements, but after EACH statement
> executes, check the valu
2009/7/1 PJ :
> Jay Blanchard wrote:
>> [snip]
>> Use the OOP interface to mysqli or PDO and these problems don't happen
>> [/snip]
>>
>> Either that or include a modicum of error checking in your code.
>>
>>
> OK, Ok, I feel stupid enough already.
> I'm not sure I want to get in that deep... it's
2009/7/1 Suresh Gupta VG :
> Hi List,
>
> This is the first job chain I am creating using manages job chains. I am
> trying to create 2 order jobs, 1 order and one jobchain. First I created an
> orderjob and named it and tried to edit it. A new window displayed with the
> properties of that orde
Michael A. Peters wrote:
Michael A. Peters wrote:
http://www.clfsrpm.net/php53/
I just have to try to rebuild some of the pecl modules, and test it to
make sure the build doesn't segfault or give me the finger or anything
rude like that before I upload the src.rpm.
Ugh - limited testing
Stuart wrote:
3) Google/Bing it (yeah, Bing's never gonna catch on like that!)
Of cause it would be nice to see the Bing clockwork toys that run it ...
I couldn't help giggle when they announced they were naming it after a
toy manuafacturer :)
--
Lester Caine - G8HFL
Mary Anderson wrote:
Hi all,
I have a php application for which I have a page which creates
temporary junk and puts it into a persistent store (in this case a
postgres database, but that is beside the point.)
I have a Save button which puts the stuff I really want into the
persistent
> -Original Message-
> From: Louie Miranda [mailto:lmira...@gmail.com]
> Sent: 01 July 2009 04:19
> To: php-general@lists.php.net
> Subject: Re: [PHP] Re: Push an Array, Comma separated.
>
> This is what I did. And it worked.
>
> $saveFiles = array();
> $arrSize=sizeof($saveFiles);
>
2009/7/1 Nisse Engström :
> On Tue, 30 Jun 2009 18:31:54 -0500, Flint Million wrote:
>
>> Suppose I have some kind of check variable - say for example
>> $abort_now. Or it could be a function. Something to be evaluated to a
>> value.
>>
>> I want to execute a block of statements, but after EACH sta
Suresh Gupta VG wrote:
> Hi List,
>
> This is the first job chain I am creating using manages job chains. I am
> trying to create 2 order jobs, 1 order and one jobchain. First I created an
> orderjob and named it and tried to edit it. A new window displayed with the
> properties of that order
Lester Caine wrote:
> Stuart wrote:
>> 3) Google/Bing it (yeah, Bing's never gonna catch on like that!)
>
> Of cause it would be nice to see the Bing clockwork toys that run it ...
> I couldn't help giggle when they announced they were naming it after a
> toy manuafacturer :)
>
OT, but the first
Why doesn't this work?
$query = "SELECT * FROM `restaurants` WHERE name ='$ucName' AND
address = '$ucAddress' " ;
$result = mysql_query($query) or die(mysql_error());
echo $result;
$row = mysql_fetch_array ($result);
$sql = "INSERT INTO `restaurants` (name, address, in
On Jul 1, 2009, at 10:56 AM, "Miller, Terion" > wrote:
Why doesn't this work?
$query = "SELECT * FROM `restaurants` WHERE name ='$ucName' AND
address = '$ucAddress' " ;
$result = mysql_query($query) or die(mysql_error());
echo $result;
$row = mysql_fetch_array ($result);
$s
I am using test-harness.php (PHP TAP Test Harness 1_0_0_BETA) and
test-more.php to write some unit tests for several libraries of
functions. These tests need to run from a MS-Windows CLI so they can be
run on our desktops for now and can be added to the automated build
process later.
I have writte
On Wed, Jul 1, 2009 at 10:56 AM, Miller,
Terion wrote:
> Why doesn't this work?
>
>
> $query = "SELECT * FROM `restaurants` WHERE name ='$ucName' AND
> address = '$ucAddress' " ;
>
> $result = mysql_query($query) or die(mysql_error());
>
>
> echo $result;
> $row = mysql_fetch_array ($resul
I haven't been able to find anything by googling... Does anyone know
of any libraries that will split up date ranges? We've got a project
where "Date Of Attendance" is moving from a single type in character
field to an automatically built field based on a DateBegin date field
and a DateEnd date fie
On Wednesday 01 July 2009 16:25:29 Matt Neimeyer wrote:
> I haven't been able to find anything by googling... Does anyone know
> of any libraries that will split up date ranges? We've got a project
> where "Date Of Attendance" is moving from a single type in character
> field to an automatically bu
On 7/1/09 10:06 AM, "Phpster" wrote:
On Jul 1, 2009, at 10:56 AM, "Miller, Terion" wrote:
> Why doesn't this work?
>
>
>$query = "SELECT * FROM `restaurants` WHERE name ='$ucName' AND
> address = '$ucAddress' " ;
>
> $result = mysql_query($query) or die(mysql_error());
>
>
> echo
On Wed, Jul 1, 2009 at 11:23 AM, Andrew Ballard wrote:
> On Wed, Jul 1, 2009 at 10:56 AM, Miller,
> Terion wrote:
>> Why doesn't this work?
>>
>>
>> $query = "SELECT * FROM `restaurants` WHERE name ='$ucName' AND
>> address = '$ucAddress' " ;
>>
>> $result = mysql_query($query) or die(mysql_err
It would be easier to standardize the input so you only have to run one
regular expression check to validate and then split the data up.
On Wed, Jul 1, 2009 at 10:33 AM, Ashley Sheridan
wrote:
> On Wednesday 01 July 2009 16:25:29 Matt Neimeyer wrote:
> > I haven't been able to find anything by go
On 7/1/09 10:29 AM, "Andrew Ballard" wrote:
$data = array($ucName, $ucAddress, $inDate, $inType, $notes,
> $critical, $cleanViolations, $noncritical);
>
> $sql = vprintf("INSERT INTO `restaurants` (name, address, inDate,
> inType, notes, critical, cviolations, noncritical) VALUES ('%s', '%s',
On Jul 1, 2009, at 11:33, Ashley Sheridan
wrote:
On Wednesday 01 July 2009 16:25:29 Matt Neimeyer wrote:
We've got a project
where "Date Of Attendance" is moving from a single type in
character field to an automatically built field based on a
DateBegin date field and a DateEnd date fi
Hello,
This is probably a dumb newbie question. I am running PHP 5.2.5 and
Apache 2.2.8 on my Mac Book Pro OS X 10.4.11. I compiled PHP and
Apache from source a while ago (as opposed to using the built-in web
server that is included w/ Mac OS X). I have written the below PHP
whose purp
Mari Masuda wrote:
> Hello,
>
> This is probably a dumb newbie question. I am running PHP 5.2.5 and
> Apache 2.2.8 on my Mac Book Pro OS X 10.4.11. I compiled PHP and Apache
> from source a while ago (as opposed to using the built-in web server
> that is included w/ Mac OS X). I have written th
Shawn McKenzie wrote:
> Mari Masuda wrote:
>> Hello,
>>
>> This is probably a dumb newbie question. I am running PHP 5.2.5 and
>> Apache 2.2.8 on my Mac Book Pro OS X 10.4.11. I compiled PHP and Apache
>> from source a while ago (as opposed to using the built-in web server
>> that is included w/
On Jul 1, 2009, at 12:20, Shawn McKenzie wrote:
Shawn McKenzie wrote:
Mari Masuda wrote:
Hello,
This is probably a dumb newbie question. I am running PHP 5.2.5 and
Apache 2.2.8 on my Mac Book Pro OS X 10.4.11. I compiled PHP and
Apache
from source a while ago (as opposed to using the bui
Mari Masuda wrote:
> On Jul 1, 2009, at 12:20, Shawn McKenzie wrote:
>
>> Shawn McKenzie wrote:
>>> Mari Masuda wrote:
Hello,
This is probably a dumb newbie question. I am running PHP 5.2.5 and
Apache 2.2.8 on my Mac Book Pro OS X 10.4.11. I compiled PHP and
Apache
On Jul 1, 2009, at 12:54, Shawn McKenzie wrote:
Mari Masuda wrote:
On Jul 1, 2009, at 12:20, Shawn McKenzie wrote:
Shawn McKenzie wrote:
Mari Masuda wrote:
Hello,
This is probably a dumb newbie question. I am running PHP
5.2.5 and
Apache 2.2.8 on my Mac Book Pro OS X 10.4.11. I compi
(Please excuse the gratuitous cross-post)
Now that PHP 5.3 has been officially released[1], the Debian PHP packaging
team would like to announce the availability of PHP 5.3 packages for initial
public testing.
The packages are currently available for both amd64 and i386 users of
testing/unstable,
Hi,
I just downloaded the new stable version of PHP 5.3 and I couldnt find the
php5apache2_2.dll file.
Is the apache module on windows no longer supported?
Thanks!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
What version, VC6 or VC9, TS or NTS? I use VC6 TS and the dll is there...
On Wed, Jul 1, 2009 at 7:31 PM, Pablo Viquez wrote:
> Hi,
>
> I just downloaded the new stable version of PHP 5.3 and I couldnt find the
> php5apache2_2.dll file.
>
> Is the apache module on windows no longer supported?
>
>
Yes, you need to use the V6 installer, I did the same thing with the V9 and
it won't work. Only after uninstalling PHP did I see that line of text
saying which one to use...
On Wed, Jul 1, 2009 at 5:54 PM, Jonathan Tapicer wrote:
> What version, VC6 or VC9, TS or NTS? I use VC6 TS and the dll i
I have a compound array, that is, an array of an array of an array, etc,
that is about 5 arrays
deep. I currently search thru all of these arrays, and based on some
criteria, I want to delete
one of the arrays (along with all of its sub-arrays) in the middle.
What is the easiest way to delete s
Sorry my mistake, I was looking in the wrong built.
Thank you!
- Original Message -
From: "Adam Shannon"
Newsgroups: php.general
To: "Jonathan Tapicer"
Cc: "Pablo Viquez" ;
Sent: Wednesday, July 01, 2009 5:50 PM
Subject: Re: [PHP] Apache module PHP 5.3 on Windows
Yes, you need to
PJ wrote:
Could somebody please explain to me what is wrong with this code?
In my script it works, returns the correct id, but when I try it in a
test pages, nothing in the world gets it to work. This is rather
frustrating, again:
THIS WORKS IN ANOTHER PAGE; IN THE TEST PAGE ID DOES NOT.
$sql = "
2009/6/30 PJ :
> Could somebody please explain to me what is wrong with this code?
> In my script it works, returns the correct id, but when I try it in a
> test pages, nothing in the world gets it to work. This is rather
> frustrating, again:
> THIS WORKS IN ANOTHER PAGE; IN THE TEST PAGE ID DOES
Hi All,
I am using CentOS 5.3-x8664. I installed PHP and Apache httpd. The
following are the version informations present on the system:
#httpd -v
Server version: Apache/2.2.3
# php -v
PHP 5.1.6 (cli) (built: Jan 21 2009 01:45:01)
The problem is when accessing through web page it is giving blan
Hi there everyone,
First of all, let me thank you for your always-present help in this list; I (as
a newbie) appreciate it very much! :)
However, pardon me for I need to trouble you with another piece of text that
doesn't do what it should do:
I need to parse the raw-listing of an FTP into it's p
38 matches
Mail list logo