On 21/09/2013, at 4:51, Tedd Sperling wrote:
> Hi gang:
>
> Do you use a Mousepad?
>
> My reason for asking is that I've used a Mousepad ever since mice first came
> out (back when they had one ball).
>
> Now that mice are optical (no balls), Mousepads are not really needed -- or
> so I'll t
On 8/07/2013, at 8:06, Tedd Sperling wrote:
> Hi gang:
>
> I have a client who has an account with GoDaddy (I know).
>
> GoDaddy says they have PHP v 5.3 installed on the client's account, but
> phpinfo() says different, namely it reports 5.2.17.
>
> After calling GoDaddy, they said the clien
On 26/12/2012, at 1:21 PM, Ken Arck wrote:
> So I cannot do nested do loops in php?
>
> $a = 0 ;
> $b = 0 ;
> do {
> echo "$a\n" ;
> do {
> echo "$b\n" ;
>$b++
> }while($b <=10) ;
>$a++;
> }while($a <= 20) ;
> ?>
You can, though you're never resetting the value
On 13/12/2012, at 10:08 AM, Curtis Maurand wrote:
> On 12/12/2012 3:47 PM, Maciek Sokolewicz wrote:
>> On 12-12-2012 21:10, Curtis Maurand wrote:
>>> On 12/12/2012 12:00 PM, Maciek Sokolewicz wrote:
On 12-12-2012 17:11, Curtis Maurand wrote:
First of all, why do you want to use pre
On 29/09/2012, at 1:29 AM, Chris Payne wrote:
> Hi there everyone,
>
> I basically have the following code, which grabs the 3 numbers to the right:
>
> $input = "250705023";
>
> $resta = substr($input, -3, 3);
>
> Then I manipulate them a little, but my question is - how, once i've used
> the
On 28/09/2012, at 6:08 PM, Chris Payne wrote:
> $test2 = '253177';
> echo $tes2 . " rounded to: ";
> $rounded_number = round($test2,-3);
> echo $rounded_number;
>
> Is it SUPPOSED to happy a number is sent to this little system and it's
> SUPPOSED to round the number up. So if the number was 14
On 17/09/2012, at 8:50 PM, Camilo Sperberg wrote:
> Hello list, I have a little question with PHP's internal working. I've
> managed to reduce the test to the following lines:
>
> $globalVariable = 'i am a global variable';
> function testFunction() {
> global $globalVariable;
> un
On 31/07/2012, at 10:54 PM, Jason Pruim wrote:
> On Jul 30, 2012, at 12:01 PM, "JeffPGMT" wrote:
>
>> Thanks All, now I have to tell the business owner to let the IT guy update
>> to 10.8 if he likes, which will buy me time to sort out all of what you
>> folks contributed.
>>
>> I wasn't awar
On 27/06/2012, at 9:45 AM, Daniel Brown wrote:
> On Tue, Jun 26, 2012 at 5:42 PM, Matijn Woudt wrote:
>>
>> Isn't everyday friday in summer? ;)
>
>If it is, then it could be argued that every day is a Monday in
> winter --- and right now, those poor folks in the southern hemisphere
> (I'm
On 20/05/2012, at 3:55 PM, Tim Dunphy wrote:
> hello, list!
>
> I have 'error_reporting = E_ALL' set in my php.ini file. However when
> I run a php script that has errors in it all that happens is that the
> page WSODs. I am running Mac OS X 10.6. Any thoughts on why errors
> don't show up in the
On 26/04/2012, at 4:40 PM, Nathan Nobbe wrote:
> Hi everyone,
>
> Does anybody know what might influence the output of the date() function
> besides date.timezone setting?
>
> Running through some code in an app I'm working on, I have this code:
>
> $timestamp = time();
> $mysqlDatetime = date(
On 19/03/2012, at 6:32 AM, Tim Streater wrote:
> After recently omitting a semicolon from the end of a statement, and having
> the result be a JavaScript error in an odd place, I'm trying to pin down just
> what PHP does with such errors. I made a small test script to run at CLI,
> which does s
On 7/02/2012, at 9:44 AM, Marco Behnke wrote:
> Am 06.02.12 17:23, schrieb Alain Williams:
>> However: a few GOTOs can make things clearer. Think of a function that
>> can fail in several different places (eg data validation, ...). But it
>> is reading a file which needs to be closed before the f
On 31/01/2012, at 2:55 PM, Ron Piggott wrote:
>
> On my clients account when I use “echo date(‘D, d M Y H:i:s');” the output is
> 5 hours ahead of us. How do I change it to my local time? Is there a way to
> specify “Eastern” time zone?
>
> I expect this would work:
>
> echo date(‘D, d M Y
On 16/01/2012, at 2:48 PM, Chris Payne wrote:
> Hi Jason,
>
> I've tried lots of different things, including:
>
> echo "" . round(68500, 1000) . " ROUNDED";
>
> thinking that might be it, but i'm stumped
>
> This is the example I was given (And have to go by):
>
> "If the loan amount is $6850
On 7/01/2012, at 2:13 PM, Donovan Brooke wrote:
> Hello,
>
> I have a simple function that contains an argument that is not required, ie:
>
> function list_formvars($pmatch) {...
>
>
> However, if I call the function without the argument, I get a warning (I'm
> having the app show all warning
On 26/11/2011, at 1:14 PM, Andreas wrote:
> Hi,
> how could I identify the server the script runs on?
>
> I've got a testserver on Windows and a remote system on Linux that need a
> couple of different settings like IP and port of db-server or folder to store
> logfiles.
>
> I'd like to do som
On 11/11/2011, at 11:35 AM, Marc Fromm wrote:
> I have this bit of code to see if a date is greater or equal to a set date.
>
> echo(date("m/d/Y",strtotime($jobs_effective_start)));// displays entered date
> of 01/03/2012
> echo(date("m/d/Y",strtotime(WSOFFBEGIN))); // displays set date of 09/16
On 11/11/2011, at 5:10 AM, Marc Guay wrote:
> Hi folks,
>
> I'm trying to convert the contents of an array from utf8 to utf16
> (thanks for the headache MS Excel!). I originally created a "user
> function" that just ran the text through
> mb_convert_encoding($text,'utf-16','utf-8') but now I'm w
On 30/10/2011, at 1:15 PM, Phil Dobbin wrote:
> Hi, all.
>
> I’m new to the list & PHP in general & have a syntax question.
>
> I have a script that calls both DB & MDB2. This is the part of the script
> where the error occurs:
>
> ##
On 20/10/2011, at 10:24 AM, hanson zhou wrote:
> I have the following in a file called "hello.php" in my htdocs directory
> (Apache webroot).
>
>
> Your name:
> Your age:
>
>
>
> as well as the following in a file "action.php", also in the same directory.
>
>
> Hi .
> You are years old.
On 15/10/2011, at 4:01 PM, Partha Chowdhury wrote:
> Then i set a check for the return value of move-uploaded_file.
>> if(isset ($move_uploaded_file)):
>> echo ""success;
>> else:
>> echo "error in uploading";
>> endif;
> But it does not print anythi
On 14/10/2011, at 1:27 AM, Nick Khamis wrote:
> Hello Everyone,
>
> I am trying to compile php from source using the following config:
>
> ./configure --prefix=/usr/local/php
> --with-apxs2=/usr/local/apache/bin/apxs
> --with-config-file-path=/usr/local/php
> --with-mcrypt=/usr/local/bin/mcrypt
On 1/09/2011, at 8:43 PM, magic-...@damage.devloop.de wrote:
> Simon J Welsh writes:
>> On 1/09/2011, at 9:53 AM, magic-...@damage.devloop.de wrote:
>>> Am Mittwoch, 31. August 2011, 20:48:37 schrieb Shawn McKenzie:
>>>> On 08/31/2011 09:03 AM, magic-...@damage.de
On 1/09/2011, at 9:53 AM, magic-...@damage.devloop.de wrote:
> Am Mittwoch, 31. August 2011, 20:48:37 schrieb Shawn McKenzie:
>> On 08/31/2011 09:03 AM, magic-...@damage.devloop.de wrote:
>>> Hi,
>>> I have opend Bug #51739 in 2010. It was closed as bogus before my last
>>> question was answered.
On 20/08/2011, at 4:51 PM, Andreas wrote:
> Hi,
> I wrote stuff with file_put_contents() in a try{} catch{} and it worked.
>
> Then I'd like to check what happens when some error occurs so I
> writeprotected the targetfile.
> Instead of getting my own message by the catch{} block I got a standar
On 10/08/2011, at 1:10 PM, Frank Thynne wrote:
> To confuse me a bit further, I can't find a definitive list of the
> basic type names. For example, is it "integer" or "int"?
Both.
http://php.net/manual/en/language.types.type-juggling.php#language.types.typecasting
---
Simon Welsh
Admin of http:
On 9/08/2011, at 8:20 AM, Andre Polykanine wrote:
> Hi everyone,
>
>As we all know, count() returns 1 if the variable
> is not an array.
> Question is: why in the world does it this? If a variable is *notA* an array,
> it contains *zero* array elements.
> You can ans
On 2/08/2011, at 10:24 PM, Sharl.Jimh.Tsin wrote:
> hi,everyone
> it is a very strange problem,At first,i put my code into the method
> inner,it works.see below:
>
> [snip]
>
> As you can see,it seems to be impossible.Can someone tell me WHY?
>
> --
> Best regards,
> Sharl.Jimh.Tsin (Fro
On 15/07/2011, at 1:58 PM, Daevid Vincent wrote:
> function test($v)
> {
> var_dump($v);
>
> if (is_string($v)) echo "FOUND A STRING.\n";
> if (is_null($v)) echo "FOUND A NULL.\n";
>
> switch ($v)
> {
> case is_string($v):
> echo
On 7/07/2011, at 5:50 AM, Jim Lucas wrote:
> On 7/5/2011 7:52 PM, Jim Giner wrote:
>> And what do you use to cut down on spam in your in-box?
>
> This is completely off topic, but here it goes...
>
> When I received an email the other day from your mail server, I had created
> this
> crazy ass
On 23/06/2011, at 10:14 AM, Scott Baker wrote:
> On 06/22/2011 03:06 PM, Simon J Welsh wrote:
>> On further inspection, that's not the problem at all. The problem's around
>> assign_children($pid,$list,&$new);
>>
>> The previous line you defined $ne
On 23/06/2011, at 9:57 AM, Simon J Welsh wrote:
> On 23/06/2011, at 9:53 AM, Scott Baker wrote:
>
>> I have a bunch of records in a DB that look like
>>
>> id | parent_id
>> --
>> 1 | 4
>> 2 | 4
>> 3 | 2
>> 4 | 0
>> 5
On 23/06/2011, at 9:53 AM, Scott Baker wrote:
> I have a bunch of records in a DB that look like
>
> id | parent_id
> --
> 1 | 4
> 2 | 4
> 3 | 2
> 4 | 0
> 5 | 2
> 6 | 1
> 7 | 3
> 8 | 7
> 9 | 7
>
> I want to build a big has that looks like:
>
> 4 -> 1 -> 6
> -> 2 -> 3 -> 7
On 2/06/2011, at 2:44 PM, 李白|字一日 wrote:
> hi, all
>
> i currently have a project which using & operator on creating a new object.
>
> like:
> $class =& new Class();
>
> it works properly in php 5.1.6,
> but not in php 5.3.3
> and it gives offset errors to me.
>
> is there anyone knows why an
On 30/05/2011, at 9:02 AM, Jim Giner wrote:
> Perhaps someone can tell me what I'm doing wrong. I did some ( a lot)
> looking around for hints on this and here is what I have compiled. It
> doesn't work - just goes to a white, blank page and sits. I don't know if I
> need all the html parts
On 29/05/2011, at 9:48 PM, Richard Quadling wrote:
> On 29 May 2011 01:36, TR Shaw wrote:
>> (sorry for the top posting)
>>
>> Sent from my iPad
>>
>
> Are you telling me that you can't scroll down the page on an iPad?
>
> I refer back to my comment that the "Sent from my iPad/iPhone" is
> in
On 30/04/2011, at 11:06 PM, David Mehler wrote:
> Hello,
>
> I am trying to use php to put a copyright notice in a page footer. I'm
> using the date function with the "Y" value for the year. Here's the
> code:
>
> echo date ('Y');
> ?>
>
> This works great for a site done in 2011 but next year
On 9/04/2011, at 3:39 PM, Scotty Logan wrote:
> On Apr 8, 2011, at 8:20 PM, Kirk Bailey wrote:
>> in otherwords, the entire idea of picking one of N objects, whatever they
>> are- strings, numbers, gummybears, lined up in a listing, and return the one
>> item selected. This seems a common enough
On 5/04/2011, at 3:35 AM, Ian wrote:
> Hi,
>
> I have a problem using the php built in classes DateTime and DateTimeZone.
>
> The idea behind the following code is to return the timestamp for the
> current time in Singapore (or other places). What it actually returns
> is the timestamp for the
On 2/04/2011, at 10:19 AM, Michelle Konzack wrote:
> Hello *,
>
> curently I am coding on my new Intranet Interface, but some teleguided
> servers return only JSON or YAML files.
>
> Can someone tell me, how to import JSON files in PHP 5/6?
>
> Thanks, Greetings and nice Day/Evening
>Mich
On 16/03/2011, at 10:34 AM, Jack wrote:
> Hello All,
>
>
>
> I got some help on this yesterday, but somehow it's not consistant
>
>
>
>
>
>
> $results = "3434approd34";
>
>
>
> if(strpos($results['response'], 'APPROVED') !== false) {
>
>
>
> print "declined";
>
>
>
> } else {
On 15/03/2011, at 9:18 PM, Joce Jovanov wrote:
> On Tue, Mar 15, 2011 at 12:44 AM, Simon J Welsh wrote:
>
>> On 15/03/2011, at 12:32 PM, Jordan wrote:
>>
>>> Hello Evrybody,
>>>
>>> Can i convert IETF format (ex: "Wed, 18 Oct 2009 13:00:00
On 15/03/2011, at 6:02 PM, Jack wrote:
> I want to be able to match if a string is contained within the string I am
> evaluating.
>
>
>
> I know that if ( $name == "xxjacksonxx"); based on the below would be true.
>
> But I want to be able to say if "jackson" is contained within $name that
>
On 15/03/2011, at 12:32 PM, Jordan wrote:
> Hello Evrybody,
>
> Can i convert IETF format (ex: "Wed, 18 Oct 2009 13:00:00 EST") in ISO8601
> format (ex: "2009-11-05T13:15:30Z")
>
> Does somebody know some php scripte or similar?
>
> Thanks...
strtotime() (http://php.net/strtotime) and date()
On 6/03/2011, at 11:08 AM, Shawn McKenzie wrote:
> On 03/05/2011 09:26 AM, Mark Kelly wrote:
>> Hi.
>>
>> I'm hoping someone can help me extract text between double quotes from a
>> string.
>>
>> $regex = 'some magic';
>> $r = preg_match($regex, $sentence, $phrases);
>>
>> So, if
>>
>> $sen
On 5/03/2011, at 8:29 PM, clanc...@cybec.com.au wrote:
> After a long battle to get my system back on air after a hard disk crash, I
> got PHP 5.3.5
> running under Apache 2.2.3. I now get a diagnostic every time I call date(),
> complaining
> about a missing parameter. The manual states that th
On 1/03/2011, at 4:52 PM, Ron Piggott wrote:
>
> I need help to know how to sort the words / phrases in my array.
>
> Variable name: $words_used
> print_r( $words_used ); Current output: Array ( [187] => Sin [249] =>
> Punished [98] => Sanctuary [596] => Sing [362] => Anointing Oil )
> Desired
As far as I can tell, your problem lies in [^href]*. That will match any
characters other than h, r, e or f, not anything other than the string href.
Consider replacing it with [^>]*?. The ? makes it non-greedy so it will stop as
soon as it can (when it matches the first href) rather than as lat
On 16/02/2011, at 1:21 PM, Mark Kelly wrote:
> In this way almost any value in $z will trigger the conditional code,
> including 0 or an empty string. The exceptions are FALSE and NULL. If you
> explicitly need to react to a NULL value, use is_null() to detect it.
http://nz.php.net/boolean#lan
On 16/02/2011, at 10:03 AM, Brian Dunning wrote:
> Hey all -
>
> I've got long articles, the HTML for which comes out of MySQL. Works great. I
> want to split it up so that I can insert ad blocks at various points within
> it. The articles are all pretty long but they're of variable length. I w
On 13/02/2011, at 9:40 AM, Andre Polykanine wrote:
> Hi all,
> I'm using in my PHP script the following four MySql queries:
> $q1=mysql_query("SELECT *FROM`CandidateQuestions`WHERE
> `Category`='1' ORDER BY RAND() LIMIT 1");
> $q2=mysql_query("SELECT *FROM`CandidateQues
On 19/01/2011, at 6:49 AM, Donovan Brooke wrote:
> Hello,
>
> I warned the list that I may have questions! ;-)
>
> ...building a simple cookie-based log-in system, and have
> narrowed an error to this below: (sorry for email line breaks, if any)
>
> ---Start---
>$query = "SELECT u_id FROM c
On 30/12/2010, at 1:12 PM, Ethan Rosenberg wrote:
> Dear List -
>
> Thank you for all your help in the past.
>
> Here is another one
>
> I would like to have a regex which would validate that a telephone number is
> in the format xxx-xxx-.
>
> Thanks.
>
> Ethan
>
> MySQL 5.1 PHP 5
On 18/12/2010, at 8:45 AM, Brian Dunning wrote:
> Hey all -
>
> I'm trying to provide reporting to users of our widget. Some may get 0 to 5
> hits a day; others may get up to 10,000 hits a day. I need to define the
> range of the graph (using one of Google's). If their max day is 7, I'd like
>
On 15/11/2010, at 12:47 PM, Rick Dwyer wrote:
> Hello List.
>
> I have a sql command that counts, groups and sorts data from a table. I need
> to insert the results of that sql command into different table.
>
> My sql SELECT looks like this:
>
> select count(*) as count, searchkeywords from
Have you considered writing to a temporary file?
On 18/10/2010, at 11:55 AM, Dotan Cohen wrote:
> I need to provide a download of a zip archive containing three files.
> This is fairly straightforward in PHP so long as one is working with
> files that already exist. However, I need to customise on
This is because of your mktime() call. You're trying to get the zeroth day of
the month, which is the last day of the preceding month. Using mktime(0, 0, 0,
$i, 1) instead should give you the desired results, assuming you do start at 1,
and not 0 as you have in your code.
---
Simon Welsh
On 17/
http://php.net/manual/en/class.mysqli.php definitely says MySQLi is a class.
It looks like PHP was complied without MySQLi support. Does running a phpinfo()
show the MySQLi module?
On 7/10/2010, at 9:33 AM, Alejandro Michelin Salomon wrote:
> Sueandant :
>
> mysqli is set of functions not a cla
On 18/09/2010, at 6:21 PM, Geoffrey van Wyk wrote:
> Hi All,
>
> I want to remove empty paragraphs from an HTML document using
> simple_html_dom.php. I know how to do it using the DOMDocument class, but,
> because the HTML files I work with are prepared in MS Word, the DOMDocument's
> loadHTM
I think you need a PHP extension to do this. XDebug works rather nicely for
this.
On 31/08/2010, at 8:49 PM, Paul Freeman wrote:
> When fatal error occurs is it possible to output also the backtrace in the
> error log? The simple error message with file line
> only is quite useless...
>
> --
On 14/08/2010, at 9:59 AM, Ashley Sheridan wrote:
> I've only ever done something like this via the command line. Having
> said that, could you maybe pass a command line string to exec().
> Something like (untested):
>
> echo 'password' | mysql -u root -p < query
>
> I believe that is the right
There's a vulnerability in using anything from the user in SQL queries. Escape
it :)
On 23/06/2010, at 6:53 PM, Tanel Tammik wrote:
> Hi,
>
> is there a vulnerability with using $_SERVER['REMOTE_ADDR'] in sql queries?
>
> Br
> Tanel
>
>
>
> --
> PHP General Mailing List (http://www.php.net
On 14/06/2010, at 4:11 PM, David Mehler wrote:
> Hello,
> I've got what is probably a simple question. I've got a site with a
> footer include file. I want to have a section that displays the last
> time the page was modified. So for example say the index.php was last
> modified today and another
On 12/06/2010, at 8:43 AM, Daevid Vincent wrote:
>> -Original Message-
>> From: tedd [mailto:tedd.sperl...@gmail.com]
>>
>> I believe, just because it can be done doesn't mean that it
>> should be done.
>>
>> My practice is *never* to use >
>> In fact, my practice is to not only use
On 11/06/2010, at 12:49 PM, Daevid Vincent wrote:
> Chew on this...
>
> develo...@mypse:~$ cat ./md5test.php
> #!/usr/bin/php
> $password = '12345678';
> echo md5(strtoupper($password));
> echo "\n";
> echo md5(strtoupper('12345678'));
> echo "\n";
>
> $password = '$12345678';
> echo md5(strto
On 20/03/2010, at 10:46 AM, Gregory Machin wrote:
> Hi
> I'm setting up a development environment that runs multiple versions of php.
> I'm looking a list of the compile option options for each php release
> other than "./configure --help" with more detail on what each option
> does.
> Any suggest
Happy 1234567890! (yes, 3.5 minutes late)
On 14/02/2009, at 11:13 AM, Gary Maddock-Greene wrote:
Note quite there yet here but yes Happy 1234567890 day to you too
--
- Gary Maddock-Greene
"Luke Slater" wrote in message news:200902131812.43295.l...@blog-thing.com
...
--
PHP General Mailing
On 10/01/2009, at 10:21 AM, Daniel Brown wrote:
On Fri, Jan 9, 2009 at 16:16, Robert Cummings
wrote:
We're at -13C right now without windchill and this is in Ottawa
which is
a lot further south than I've lived in the past (Timmins, Sudbury).
Yeah, no offense, my friend, but you can
On 17/10/2008, at 12:14, Nathan Rixham wrote:
*Procedural or OOP?*
OOP
*Dev OS*
Mac OS 10.5.5
*Dev PHP Version*
5.2.5
*Live Server OS*
Linux 2.6.9-42.0.3.ELsmp #1 SMP
*Live Server PHP Version*
5.2.6
*Which HTTP Server Software (+version)?*
Apache 1.3.41 live and Apache 2.2.
70 matches
Mail list logo