David Orn Johannsson wrote:
> I'm having a problem with StrToLower function in php
>
> I'm trying to convert characters like Þ and acute letters from
> uppercase to lowercase, but it dosen't work.
>
> this is what the manual says: "Note that 'alphabetic' is determined by
> the current locale.
Jared Boelens wrote:
> This is the one my company uses:
>
> http://nocc.sourceforge.net/
>
> I found it very easy to modify, and it fully supports attachments as well as
> the related RFCs.
I had problem with it, since it required imap stuff and whatnot.
Anyway, I ended up using squirrelmail a
Josh Edwards wrote:
> This is a basic question but I'm a basic fellow. If I have an array
>
> $timespread = array("12am-01am"=>0);
> $timespread["01am-02am"]=0;
> $timespread["02am-03am"]=0; etc
>
> Using $time which is a number, I want to add 1 to the value of
> $timespread[$time] without chan
Evan Nemerson wrote:
> I need to generate every possible combination of the the values in an array.
> For example, if...
>
> $array = Array("A", "B", "C");
> I really have no idea where to begin. The best lead I can think of is that
> there are going to be n! elements in the output array, where
Robert Rothe wrote:
> Thanks. So the next() and prev() functions just traverse an array
> some type of linked list? This is what precludes direct access to
> specific elements?
Yup, there is an internal position pointer in every array which are
used by most array_ functions.
--
PHP Gene
Jon Yates wrote:
> People, hope you can help. The below IF statement is getting a PARSE error.
> Can anyone spot why?
>
> if (($this->checkReferralCB($this->benefitRef, $this->benefitNo,
> $this->childDOB))
> && (!$this->checkLocation($this->post, "W")) && (!empty($this->childDOB)))
> || (
List Peters wrote:
>
>
>
> navigation
>
>
>
>
> In the include file I have all the code i need.
>
> My problem is that for one page in the site I need to display a image in the
> navigation bar that is referenced from a database. The database query
> happens in the included file which is
Hi
php-4.1.2
linux RH 7.2
I have created a small php extension. The extension works as expected
when I compile it using
$ ./configure --with-foo && make # foo is the extension
It gets compiled into the php binary. All is well, but I would like to
compile my extension as a loadable modules (
Hi
I am having some problems with the 'pack' function. Some values just
doesnt come out right. For instance, 0xa0 turns into x81a0.
Here is some code I used for testing. It packs the value, prints it.
Then unpacks the value and prints it
# This is wrong, but note that unpack gives the correct
Jason Murray wrote:
>>: Don't know why it's got everyone else stumped.
>>:
>>: "\n" is the new line character. Make sure you use it in "" and
>>: not in ''.
>>:
>>: Jason
>>
>>Unfortunately, that doesn't work either, it changes the \n that
>>appeared at the end of the new line to a single black
Jason G. wrote:
> Hello General and Dev list,
>
> Considering the fact that it is good practice to use htmlspecialchars()
> anytime you are outputting non-html content to the browser...
>
> After typing the 16 characters in the htmlspecialchars() function
> thousands of times...
>
> I was wo
Dl Neil wrote:
> 2 because the (function argument) controlling feature is the connection, it is not
>possible for another
> concurrent user to 'steal' your ID or influence the ID returned to you - it's all
>yours!
Ok, assume you are correct, but what if you are using persistent
connections (i
[EMAIL PROTECTED] wrote:
> Hello,
>
> I need to allow a client, named: "A", to give their clients access to a remote page
>on A's server. This is the problem:
> 1. I need to record who has accessed this page on A's server
grep stuff /var/log/httpd/access.log
> 2. password protect this page
Jimmy wrote:
> Hi Daniel,
>
>
>>variables, but as part of the Content of the HTTP request. Here is a sample:
>>
>
>>POST
>>/~rafael/sms_mail/cliente.dcs.php?NotificationProtocolVersion=1.0.0.0&ApplicationName=NPlex&ApplicationVersion=6.0.037&RequestType=NewMsg&RequestTime=01/15/2002%2014:08:23
Scott Houseman wrote:
> Hi Al.
>
> While we are on topic, what are the key differences between include() &
> require() ?
"Unlike include(), require() will always read in the target file,
even if the line it's on never executes. If you want to conditionally
include a file, use include(). The
Imar De Vries wrote:
> Imar De Vries wrote:
>
>
>>- Including remote files *is* possible. The php manual does not mention this
>>does not work, and when I add the variable to the call (include
>>/calculate_drivers?serie_id=3.php) the code is processed perfectly. The
>>thing is, I can not pa
Stefan Rusterholz wrote:
> Im not sure if "function-backtrace" is the correct word for what I need, so I'll
>explain:
> If I have for example
What you are looking for is a "stacktrace", ie the stack of called
functions. Dunno if php has any support for it, but it is normally
used when debugg
Louie Miranda wrote:
> Hi, can php execute system commands
> like df, and then print it to html ?
`df`;
shell ("df");
exec ("df");
etc
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact th
Ken Kinder wrote:
> The $this->children attribute should be an array of (references to) objects.
> I think somehow in the foreach ($this->children as $child) the objects are
> being copied, as $child->validate(); seems not to effect the original objects.
Someone just said you can use
$a = &
Austin Gonyou wrote:
> The real question I suppose is how could I parse this type
> of output into something I could use to make a graph.
>
> Example:
> 12:20:00 PM CPU %user %nice %system %idle
> 12:30:00 PM all 2.17 0.79 0.77 96.27
> Problem is I
Arve Bersvendsen wrote:
> As a small, personal, "enjoy-myself"-project I'd like to run a
> perpetual-running socket server. Problem is; I also want it to be
> self-modifying so I can insert, remove and change functions as the
> server is running.
>
> The problem is; under normal circumstances
Jon Farmer wrote:
> I am getting a the follwing error:
>
> Warning: fopen("/home/jon/pgpfiles/sgsdgsdg","w") - Permission denied in
> /home/ethiorg/public_html/test.php on line 2
> the directory /home/jon/pgpfiles has mode 777 and is owned by nobody and
> group is nobody. Apache runs under user
22 matches
Mail list logo