Re: [PHP] Howto detect the hostname of the server?

2011-11-25 Thread Mark Kelly
Hi. On Saturday 26 Nov 2011 at 00:14 Andreas wrote: how could I identify the server the script runs on? [snip] I looked into phpinfo() but haven't found anything helpful, yet. Have I overlooked something or is there another way to identify the server? Wouldn't the server IP address in

Re: [PHP] Re: Secure data management

2011-10-05 Thread Mark Kelly
Hi. On Wednesday 05 Oct 2011 at 00:04 Mark Kelly wrote: I'd be interested in any ideas folk have about these issues, or any others they can envisage with this proposal. Thank you all for joining in here - it's been a fascinating read so far. Mark -- PHP General Mailing List (http

Re: [PHP] Re: Secure data management

2011-10-04 Thread Mark Kelly
Hi. On Tuesday 04 Oct 2011 at 21:39 Stuart Dallas wrote: http://stut.net/2011/09/15/mysql-real-escape-string-is-not-enough/ Thanks. I followed this link through and read the full message (having missed it the first time round), and while I find the idea of using base64 to sanitise text

Re: [PHP] Re: dynamic copyright in page footer?

2011-04-30 Thread Mark Kelly
On Saturday 30 Apr 2011 at 14:28 Nathan Rixham wrote: echo implode(,, range(2011,date(Y))); What an elegant solution! Thank you. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Regex for extracting quoted strings

2011-03-05 Thread Mark Kelly
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 $sentence = 'Dave said This is it. Nope, that is the wrong colour she replied.'; I want $phrases to contain 'This is it' and

Re: [PHP] Re: Regex for extracting quoted strings

2011-03-05 Thread Mark Kelly
Hi. Thanks for all the replies. On Saturday 05 Mar 2011 at 22:11 Simon J Welsh wrote: On 6/03/2011, at 11:08 AM, Shawn McKenzie wrote: $regex = '/([^]+)/'; Shawn, this regex gets me two copies of each string - one with and one without the double quotes - as did the one Nathan posted

Re: [PHP] Custom function

2011-02-16 Thread Mark Kelly
Hi. On Wednesday 16 Feb 2011 at 00:49 Simon J Welsh wrote: As $z is converted to a boolean and exists, that works just the same way as !empty(). --- First I'd like to apologise for handing out bad advice, and second, to thank Simon and Andre for pointing out my mistake. I'll go back to

Re: [PHP] Custom function

2011-02-15 Thread Mark Kelly
Hi. On Tuesday 15 Feb 2011 at 23:41 Andre Polykanine wrote: Give it a default (possible empty) value: function MyFunction($x, $y, $z=) { // function goes here if (!empty($z)) { // The optional parameter is given } } Using an empty string and the empty() function in this way can lead to

Re: [PHP] NetBeans Question

2010-05-30 Thread Mark Kelly
Hi Tedd. On Sunday 30 May 2010 at 19:01 tedd wrote: I wanted to ask my questions on the NetBeans forums, but I am having trouble logging in. They seem to have a problem with my given ID, password, and email address and I haven't the time to straighten it all out -- I just want answers -- so I

Re: [PHP] NetBeans Question

2010-05-30 Thread Mark Kelly
IDE. If you want a regular text editor netbeans is the way to go. On Sun, May 30, 2010 at 8:15 PM, Mark Kelly p...@wastedtimes.net wrote: Hi Tedd. On Sunday 30 May 2010 at 19:01 tedd wrote: I wanted to ask my questions on the NetBeans forums, but I am having trouble logging

Re: [PHP] NetBeans Question

2010-05-30 Thread Mark Kelly
Hi. On Monday 31 May 2010 at 02:50 Ashley Sheridan wrote: Yeah, like I mentioned earlier, Dreamweaver is known for having issues with include files, can be slow when working on large projects with lots of files, and is only available for Mac and Windows, which limits it somewhat. Indeed. I

Re: [PHP] Need login suggestions

2010-05-02 Thread Mark Kelly
Hi. On Monday 03 May 2010 at 03:49 Ashley M. Kirchner wrote: [snip] So what if a student registers on the wrong side of the wall? Nothing happens [snip] Kids would be registering for a photo contest, parents will be registering for something completely different. You might try

[PHP] Server-side encryption to prevent form hacking: new idea?

2009-12-11 Thread Kelly Jones
If you have an HTML form select field xyz with possible values apple, banana, and cucumber, anyone can easily set xyz to an arbitrary value. To prevent this, I create a hidden field code[xyz] with value: base64_encode(mcrypt_ecb( MCRYPT_RIJNDAEL_256,$salt,apple,banana,cucumber,MCRYPT_ENCRYPT));

Re: [PHP] Recognizing double clicks

2009-11-22 Thread Mark Kelly
Hi. On Sunday 22 Nov 2009 at 05:34 Skip Evans wrote: It just dawned on me the button may be disabled right when it's clicked to prevent a double submit? Is that doable? To mark a button as disabled after it has been clicked to prevent it being clicked twice just add some simple code in the

[PHP] Encrypt then decrypt yields extra dots at end

2009-09-07 Thread Kelly Jones
I thought this code: $enc=mcrypt_ecb(MCRYPT_RIJNDAEL_256,salt123,encrypt_me,MCRYPT_ENCRYPT); $dec=mcrypt_ecb(MCRYPT_RIJNDAEL_256,salt123,$enc,MCRYPT_DECRYPT); echo $dec; would yield encrypt_me. The actual result is encrypt_me.. (bunch of extra dots). Why, and how do I fix

Re: [PHP] putting variables in a variable

2009-07-21 Thread Mark Kelly
Ross, If I understand correctly what you want to do, you're almost there... You need: $myimage1 = image1.jpg; $myimage2 = image2.jpg; $myimage3 = image3.jpg; $body .= table tr tdimg src=\$myimage1\/td /tr tr tdimg src=\$myimage2\/td /tr tr tdimg src=\$myimage3\/td /tr

Re: [PHP] Re: preg_replace problem

2009-06-14 Thread Mark Kelly
Hi. On Saturday 13 June 2009, Al wrote: I may not have been very clear. Feed it just test with the quotes. You should get back, test the same as you gave it. Instead, I get back quote;testquote; Like Shawn, I have tried your code in isolation and only get the expected results. I

Re: [PHP] Fractions

2009-05-24 Thread Mark Kelly
Hi. On Sunday 24 May 2009, Ron Piggott wrote: Is there a way to remove the trailing '0'? $width = number_format($width,2); Also is there a way to have the original fraction display (1/4), as well as have provision for 1/8 and 3/8 and 1/2, etc. display? On this one I suspect you'd have to

Re: [PHP] what to use instead of foreach

2009-04-14 Thread Mark Kelly
Hi Phil. On Monday 13 April 2009, PJ wrote: Thanks for the suggestion, Mark. I've already experimented with count; you're close, but there is still a small glitch and that's in count(); foreach doesn't give a damn about count so you can't use that - it is reset once inside the foreach loop.

Re: [PHP] what to use instead of foreach

2009-04-13 Thread Mark Kelly
Hi. On Sunday 12 April 2009, PJ wrote: foreach does not allow for different formatting for output... [snip] But how do you get result1, result2 result3 // with br at end ? $lastIndex = count($a) - 1; // Adjust for zero-indexing. $outputString = ''; foreach ($a as $index = $value) { if

Re: [PHP] $_GET

2009-04-11 Thread Mark Kelly
Hi. On Sunday 12 April 2009, Ron Piggott wrote: At the very start of my index.php I have the following lines of code: foreach($_GET as $key = $val) { $$key = $_GET[$val]; echo $_GET[$val] . br /; } Try: echo $_GET[$key] . br /; HTH Mark -- PHP General Mailing List

Re: [PHP] Search thoughts

2008-07-19 Thread Mark Kelly
Hi. Just noticed I replied direct rather than to the list last time, sorry about that. On Saturday 19 July 2008, Richard Heyes wrote: How much traffic do you have and what's your hardware? Are your queries cached and subsequently repeated? Do you pre cache common queries? I've done this kind

[PHP] Re: problem with include directive under XHTML

2008-06-03 Thread Michael Kelly
Robert Huff wrote: I'm working on a project that involves converting HTML to XHTML. Not strictly sure this is a PHP issue, but testing (so far) has eliminated other possibilities. Can someone offer suggestions why, on the same server (Apache 2.2.8), this works: !DOCTYPE HTML

[PHP] Arbitrary mathematical relations, not just hashes

2008-04-06 Thread Kelly Jones
Many programming languages (including Perl, Ruby, and PHP) support hashes: $color['apple'] = 'red'; $color['ruby'] = 'red'; $type['apple'] = 'fruit'; $type['ruby'] = 'gem'; This quickly lets me find the color or type of a given item. In this sense, color() and type() are like mathematical

Re: [PHP] looping through a $_POST variable

2007-12-30 Thread Mark Kelly
Hi. On Monday 31 December 2007 00:34, Richard Kurth wrote: When I do a var_dump($_POST['emails']); it has all the emails in it string(65) [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] Then this simple regex should do you; just use it instead of explode: $AddressList =

Re: [PHP] From TXT to a mySQL db

2007-10-18 Thread Mark Kelly
Hi. On Thursday 18 October 2007 19:29, Marcelo Wolfgang wrote: Hi all, I need some helps/tips to know if a transition from a txt file to a sql database is viable to do. [snipped data and table descriptions] Is there a quick and simple way to convert the row string into a INSERT query ?

RE: [PHP] Problems with file_get_contents() and local PHP file

2007-08-08 Thread Michael Kelly
I'm too busy with other matters to try this out right now, but I'll make sure to try it later when I can. Thanks! -Mike - Original Message - From: Jan Reiter [EMAIL PROTECTED] Newsgroups: php.general To: [EMAIL PROTECTED]; 'Mike' [EMAIL PROTECTED] Cc:

Re: [PHP] Thoughts about music library

2007-08-06 Thread Mark Kelly
Hi. On Monday 06 August 2007 23:13, Børge Holen wrote: As mentioned earlier, I want to make stuff myself When I did this I used Music Player Daemon (MPD - http://musicpd.org/) and wrote my own web interface in php. It offers a nice simple but powerful API, and is *very* low on resource usage

Re: [PHP] Pirate PHP books online?

2007-07-16 Thread Mark Kelly
Hi. On Monday 16 July 2007 12:42, Dotan Cohen wrote: So, suckers, I'm with you now, and I'll start pirating again. This is a real shame (not to mention a foolish thing to post to a publicly archived mailing list). As a user of open source technology you are benefiting directly from the PHP

Re: [PHP] Re: php security books

2007-07-04 Thread Mark Kelly
Hi. On Wednesday 04 July 2007 13:01, Andrew Hutchings wrote: Avoid the O'Reilly one as it is flawed. In what way? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP not posting

2007-06-24 Thread Mark Kelly
On Sunday 24 June 2007 13:54, Pieter du Toit wrote: Hi I installed PHP5 on iis and i can see hello world and phpinfo. When i right click the webpage and view source, i can see the php code, and the form does not want to post the form details. Will appreciate any help. I'm not really

[PHP] Intercepting fopen, mysql_connect, and similar functions for migration

2007-06-08 Thread Kelly Jones
I'm migrating a website from one server to another, and my file paths and dbs have changed. For example /a/b/c/foo.txt on the old machine is at /x/y/z/foo.txt on the new machine. The MySQL db foo on the old machine is bar on the new machine. Can I intercept fopen() and mysql_connect() so that

[PHP] Calling static child method from inherited static parent method

2007-01-03 Thread Kelly Jones
I'm trying to implement what I think is called a virtual method: my abstract parent class ParentClass defines a method xxx that calls method yyy, but yyy is defined only in ParentClass's children. I can't get this to work (PHP5.0.4). Sample code: === start sample code === abstract class

Re: [PHP] php/ajax question

2006-12-30 Thread Mark Kelly
On Saturday 30 December 2006 18:56, tedd wrote: Why can't the php script redirect the browser when called via ajax ? The browser will not be expecting a page back, and will ignore headers. Just some quick suggestion code, this isn't tested (except createRequest - I use that all the time)...

Re: [PHP] php/ajax question

2006-12-30 Thread Mark Kelly
On Saturday 30 December 2006 18:56, tedd wrote: Why can't the php script redirect the browser when called via ajax ? The browser will not be expecting a page back, and will ignore headers. The response must be handled by a function you define. For the sake of a quick demo, if your php accepts

[PHP] Tidy HTML source?

2006-11-27 Thread Mark Kelly
Hi. In the stuff I do almost all the HTML is generated with PHP as basically none of it is static (lots of tabular data, state-sensitive links, stuff like that). Am I crazy to make an extra effort in my code to make the generated HTML pretty? By this I mean linebreaks, indentation etc. -

[PHP] func_get_args as a hash? (faster constructors)

2006-11-27 Thread Kelly Jones
If I define a function like this: function foo ($x, $y, $z) {} and then call: foo(1,2,bar); is there a function I can call inside foo() that yields this hash: {x = 1, y = 2, z = bar} In other words, gives me the values *and names* of the arguments to foo? func_get_args just yields the

Re: [PHP] Tidy HTML source?

2006-11-27 Thread Mark Kelly
On Monday 27 November 2006 17:10, Mark Kelly wrote: Am I crazy to make an extra effort in my code to make the generated HTML pretty? Thanks everyone for your thoughts on this - I'm quite relieved that I'm not the only one who sits and tweaks so that the HTML is nice and readable. It just

[PHP] PHP sendmail proxy (using xinetd)

2006-11-26 Thread Kelly Jones
I'm trying to write a sendmail proxy in PHP: people would connect to my proxy running on port 25 (via xinetd), and the proxy would connect to sendmail (tweaked to run on port 26). Currently, the proxy is 100% transparent, but I plan to tweak it to intercept sendmail's replies and substitute its

[PHP] Error: Cannot load /usr/local/apache2/modules/libphp4.so into server: /usr/local/apache2/modules/libphp4.so: cannot restore segment prot after reloc: Permission denied

2006-09-20 Thread Kelly McCoy
installations have gone smoothly; I just have not been able to start apache because of the error. Thanks for any help. Kelly

[PHP] Including Functions; one file or many?

2006-05-26 Thread Mark Kelly
Hi I'm writing a set of db abstraction functions for an internal app which will give us a set of simple function calls for dealing with the db, like $result = db_AddEmployee($EmployeeData); $EmployeeData = db_GetEmployee($EmployeeID); etc. There will be quite a few functions needed to deal

Re: [PHP] Including Functions; one file or many?

2006-05-26 Thread Mark Kelly
At 9:02 AM +0100 5/26/06, Mark Kelly wrote: TIA in advance for any advice, And thanks in arrears to all who responded. Since there appears to be no compelling reason to go either way, and we already have subdivided include files for functions (to a limited extent) I've decided to go

Re: [PHP] Including Functions; one file or many?

2006-05-26 Thread Mark Kelly
On Friday 26 May 2006 14:56, Matt Carlson wrote: One note on include files. Usually it's best practice to not name them .inc Name them .inc.php so that they cannot be opened by a webbrowser, thus giving more information to a potential attacker. Is this still a concern when all include files

Re: [PHP] Including Functions; one file or many?

2006-05-26 Thread Mark Kelly
On Friday 26 May 2006 16:41, Jochem Maas wrote: besides .inc.php seems to be/becoming a sort of defacto std (no need for filenaming jihad people ;-) That's certainly worth considering (particularly as the project is still at the very early stages), thank you both for mentioning it. My

Re: [PHP] redirect using php

2006-04-05 Thread Mark Kelly
On Tuesday 04 April 2006 22:27, Brady Mitchell wrote: -Original Message- In JSP I have access to a function called sendRedirect() to send a user from one page to another, usually after some processing completed. Is there a similar function in PHP? Take a look at the header()

Re: [PHP] redirect using php

2006-04-05 Thread Mark Kelly
On Wednesday 05 April 2006 13:55, Chris Shiflett wrote: Mark Kelly wrote: You can also use something like: echo meta http-equiv=\Refresh\ content=\0;url=$from_page\; There's no need to use a meta tag to mimic HTTP headers. PHP provides the header() function. I have been using

Re: [PHP] redirect using php

2006-04-05 Thread Mark Kelly
On Wednesday 05 April 2006 14:33, Chris Shiflett wrote: Mark Kelly wrote: You can also use something like: echo meta http-equiv=\Refresh\ content=\0;url=$from_page\; There's no need to use a meta tag to mimic HTTP headers. PHP provides the header() function. I have been

Re: [PHP] Creating forms dynamically

2006-03-15 Thread Mark Kelly
On Tuesday 14 March 2006 20:21, Paul Goepfert wrote: If anyone has any ideas on how to create the form when the error messages are displayed without having to code it a second time please let me know. I use an assoc. array that matches the form inputs, for example: $FormDisplayData = array(

[PHP] javascript, forms and php

2005-12-01 Thread Kelly Meeks
things properly. Is there any way around this, or what am I missing? TIA, Kelly -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.

[PHP] php/pear question

2005-04-28 Thread Kelly Meeks
into pear. Thanks in advance, Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] POST multipart/form-data temp files not being created. File_upload directive is resetting to No.

2005-03-11 Thread Shawn Kelly
and admiration to the PHP community! cudos, Shawn Kelly. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Sending data via POST

2005-03-11 Thread Shawn Kelly
This is from php.net: Just change the $out to fill with your POST request (instead of the GET). Works good, you can change ports. :) $fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);if (!$fp) { echo "$errstr ($errno)br /\n";} else { $out = "GET / HTTP/1.1\r\n"; $out .= "Host:

Re: [PHP] POST multipart/form-data temp files not being created. File_upload directive is resetting to No.

2005-03-11 Thread Shawn Kelly
Richard Lynch you are my new best friend! grep -n uploads /etc/httpd/conf/httpd.conf tells me 279:php_admin_value file_uploads off. I don't know how I could have missed it! I changed httpd.conf to have php_admin_value file_uploads On and everything worked like it was supposed to this morning

[PHP] PHP - mail problems - HELP!!! PLEASE

2005-01-15 Thread Kelly
desperate!! I am also at my wits end. I have been fighting with this for a week. Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] [Fwd: [PHP-INSTALL] Install of PHP 5.0.3 Error]

2005-01-12 Thread Kelly
like componant to Solaris I need to change to show the old version is gone? Any help out there for me? Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [Fwd: [PHP-INSTALL] Install of PHP 5.0.3 Error]

2005-01-12 Thread Kelly
=/usr/lib/libthread.so.1 Kelly Kelly wrote: I have installed PHP 5.0.3 on an Intel box running Apache 1.3 with a Solaris 9 x86 OS. When I try to restart the Apache server I get this error: Syntax error on line 249 of /etc/apache/httpd.conf: Cannot load /usr/apache/libexec

Re: [PHP] [Fwd: [PHP-INSTALL] Install of PHP 5.0.3 Error]

2005-01-12 Thread Kelly
Well I think you have the variable problem fixed. Worked like a charm. But I think I spoke to soon about the mail feature. I cannot get it to mail a form. Could I have not turned something else on? Kelly Kelly wrote: I found other things about this online doing google. I have not fixed

RE: [PHP] splitting string

2004-11-16 Thread Kelly Hallman
records. And we know the wisdom of assuming something will NEVER be necessary! :) -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] authentication question

2004-11-02 Thread Kelly Meeks
with the htaccess file so if the user has already logged in via the session system, they don't have to then enter the same data again via http authentication? Kelly Meeks Right Angle, Inc. PO Box 356 Northampton, MA 01060 413-586-4694 ext. 11

[PHP] Adding a realtime monitoring console

2004-09-01 Thread Kelly Hallman
?)... Has anyone done this before? Is there anything already available? If anyone else is interested, I would be willing to share the eventual technique and code with interested parties. TIA! --Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] in data

2004-06-18 Thread Kelly Hallman
for something like http://www.php.net/htmlentities -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SCP a file from my server to another using PHP

2004-05-04 Thread Kelly Hallman
who has done this and knows the answer!!! Haven't done this, but I think it should work. Hope it helps at least. -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Logic problem

2004-04-20 Thread Kelly Hallman
it is to read using this approach. I'm sure some find that debatable. After all, I'm crazy ;) -- Kelly Hallman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Help with shorting this please

2004-04-19 Thread Kelly Hallman
either. Hopefully this type of optimization is what you were looking for. - Kelly // constant; preferred date format define('DATE_FMT','F j, Y'); // set file prefix and suffix $deleteprefix = ; $deletesuffix = ; // create regex pattern $regexpattern = sprintf('/^%s.*%s$/',$deleteprefix

Re: [PHP] oo question

2004-04-19 Thread Kelly Hallman
() magic methods in PHP5, as they will give you the best of both worlds. ...Among many other nice OO feature improvements in PHP5... -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: oo question

2004-04-19 Thread Kelly Hallman
lightweight instances of the object for another purpose that you're not envisioning at the moment. -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Pear Layout question

2004-04-19 Thread Kelly Hallman
the PEAR files is in your include path, and it mimics the same structure as the PEAR directory you have on the server (where PEAR is installed) you should be good to go. -- Kelly Hallman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] oo question

2004-04-19 Thread Kelly Hallman
Apr 19 at 3:46pm, Chris W. Parker wrote: Kelly Hallman mailto:[EMAIL PROTECTED] I think what you're talking about here is encapsulation. in that case what is abstraction? I suppose it's pretty similar, but I believe that encapsulation is the pedantic term for hiding the data structure

Re: [PHP] Re: smarty

2004-04-14 Thread Kelly Hallman
. -- Kelly Hallman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] class design

2004-04-13 Thread Kelly Hallman
require multiple revisions until you hit the right balance. Like any design effort, it's worth the time--and gets easier. --Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Web-Chat Software

2004-04-13 Thread Kelly Hallman
that this is an infinite loop (until script times out) but why not just while(true) { } or, more commonly, while(1) { } ...? That's a rhetorical question, by the way :) --Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Serializing objects and storing them is sessions [fixed]

2004-04-09 Thread Kelly Hallman
://www.php.net/manual/en/language.oop.serialization.php --Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Serializing objects and storing them is sessions [fixed]

2004-04-09 Thread Kelly Hallman
. -- Kelly Hallman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Serializing objects and storing them is sessions [fixed]

2004-04-09 Thread Kelly Hallman
Apr 9 at 2:49pm, Jason Giangrande wrote: Kelly Hallman wrote: Try it without serializing, it works. After retesting, it seems you are correct. I guess the same bad __sleep() code that was causing the object not to unserialize at all was also preventing automatic serialization. For some

Re[2]: [PHP] Serializing objects and storing them is sessions [fixed]

2004-04-09 Thread Kelly Hallman
older version of PHP, but a segfault seems like a pretty extreme error message :) Thanks for pointing me in the right direction! It's so much easier to find the explanation when you already have the answer --Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

RE: [PHP] smarty

2004-04-08 Thread Kelly Hallman
tired! I'll be frank with this next comment and say to you, Kelly, that it was fine and dandy for you to be antagonistic and demeaning with your tone towards Justin French when he commented that PHP, itself, IS a templating engine, but when John turned the tables in regards to those remarks made

Re: [PHP] smarty

2004-04-07 Thread Kelly Hallman
to the power of PHP, or not. In other words: are your template designers already good PHP programmers? It's not just hype, it solves real problems, even if you don't have them. --Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] smarty

2004-04-07 Thread Kelly Hallman
haven't yet seen the light. I'll give InterJinn a go. I hope it's all you say it is. One thing we can both agree on is that templating is not inherently redundant with PHP. --Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] smarty

2004-04-07 Thread Kelly Hallman
Apr 7 at 10:22pm, John W. Holmes wrote: Uhhh, yeah--that's not templating, that's called spaghetti code :) +1 - Use of buzzword Right about here I could sense where this was going I don't know, what would you call it? Is there a non-buzzword term you'd be happier with? That term

Re: [PHP] smarty

2004-04-06 Thread Kelly Hallman
the powerful benefits far outweigh any performance issues. I've never felt like it was slow or too much for a given task. Get yo' template on! --Kelly (another Smarty fan) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] smarty

2004-04-06 Thread Kelly Hallman
); $this-display($this-tmpl); } } // actualphpcode.php -- called by the browser $pt = new MyPage; $pt-render('pagecontent.tpl'); Now, is Smarty awesome, or what? :) --Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Tricky array question

2004-04-01 Thread Kelly Hallman
data. -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] What's the use in OOP?

2004-03-29 Thread Kelly Hallman
). There IS something to OOP! Unfortunately, it's difficult to learn through examples of car stereo panels or different types of fruit or trees (though they do make perfect sense in hindsight). -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

RE: [PHP] What's the use in OOP?

2004-03-29 Thread Kelly Hallman
being more efficient. It's not the prime language for OOP but I find that when it all balances out, for web apps in PHP, OO offers an attractive price/performance ratio... (can't wait for PHP5) -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] array $_POST problem

2004-03-17 Thread Joey Kelly
On Tuesday 16 March 2004 12:16, thou spake: You're the Joey Kelly who runs the LUG in NoLA, yes? Yes, that's me. Have you been to one of our meetings lately? We redid our website recently: http://www.nolug.org Thanks for saying hi :-) snip Upon post, you need to get materials

[PHP] array $_POST problem

2004-03-16 Thread Joey Kelly
is an awful kludge that I'd rather not sign my name to. Thanks for any help. -- Joey Kelly Minister of the Gospel | Linux Consultant http://joeykelly.net I may have invented it, but Bill made it famous. --- David Bradley, the IBM employee that invented CTRL-ALT-DEL -- PHP General Mailing List

Re: [PHP] Re: Are $_POST and $_GET interchangable?

2004-03-10 Thread Kelly Hallman
. On that note, something to keep in mind is that GET variables (being part of the URL) are written to server logs. Depending on the data being passed, this could be a security issue (especially in a shared hosting environment where untrusted users may have access to the logs). -- Kelly Hallman

[PHP] Return value efficiency question

2004-03-09 Thread Kelly Hallman
any expert responses. I don't know enough about the internals of PHP to know the implications of this... thank you! --Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] need form array help

2004-03-01 Thread Kelly Hallman
'][$v]; $mode = $_REQUEST['mode'][$v]; // 'edit' or 'delete' } Adjust to your particular situation... --Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using a perl regex

2004-02-11 Thread Kelly Hallman
in the pattern, but will look further. I think it means you need to put a delimiter around your regex... Typically you would use slashes (preg_match(/regex/)) but the character can be other than slash.. i.e. not alphanumeric or backslash :) -- Kelly Hallman // Ultrafancy -- PHP General Mailing List

Re: [PHP] auto forms from mysql database

2004-02-02 Thread Kelly Hallman
the object well and it could validate the data automatically or contain other non-database data such as form headings, help text, etc. Also hooking this into some kind of form class (I like PEAR's HTML_QuickForm) may help speed things along... -- Kelly Hallman // Ultrafancy -- PHP General Mailing

RE: [PHP] OOP methodology{O|T} kinda'

2004-01-30 Thread Kelly Hallman
with it. Not exactly a small learning curve. Other languages dispense with a lot of the formalities found in C++ (a good or bad thing, depending on your perspective). I found Python to be a great language to learn OOP, since it forces good habits on you. -- Kelly Hallman // Ultrafancy -- PHP General

RE: [PHP] OOP methodology{O|T} kinda'

2004-01-30 Thread Kelly Hallman
simplified a lot of problems I'd had trying to do more complex tasks with a procedural/functional approach. I still use perl to whip up a sysadmin script here and there, but after using Python I began to regard perl as a syntactic mess. -- Kelly Hallman // Ultrafancy -- PHP General Mailing List

RE: [PHP] Re: jpeg Uploader issue

2004-01-12 Thread Kelly Hallman
(Content-type: image/jpeg); -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] _(What does this do?)

2004-01-12 Thread Kelly Hallman
, but not another. What say you, PHP gurus? Gotta love the syntactic sugar! -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] class design question

2004-01-12 Thread Kelly Hallman
portable, so you have to solve that). If you've never looked at PEAR, the DB class is a good start. Also, despite all it's features, it's quite fast! -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php doesn't work in html files

2004-01-11 Thread Kelly Hallman
contain PHP code. Same performance hit if you were naming plain HTML files as .php... -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] not sure why regex is doing this

2004-01-09 Thread Kelly Hallman
lookahead (?!pattern) ... also note that this is an advanced regex feature and won't it work on many regex engines not based on PCRE. -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] if(NANC 0) - always evaluates TRUE...

2004-01-06 Thread Kelly Hallman
in the desired behavior: (int)NANC 0 == false -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Verifying a url

2004-01-06 Thread Kelly Hallman
) ? true : false ; If you decide to use SERVER_PORT to sense secure connections, this logic would work well. It only depends on knowing the port you consider secure. For typical https, that would be port 443. Enjoy! -- Kelly Hallman // Ultrafancy -- PHP General Mailing List (http://www.php.net

  1   2   3   >