Re: [PHP] hey, got a question....

2001-07-06 Thread Christopher Allen
well theres your problem...winblows.lol - Original Message - From: "ReDucTor" <[EMAIL PROTECTED]> To: "Christopher Allen" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 11:58 AM Subject: Re: [PHP] hey, got a question...

[PHP] Zeev via Babelfish

2001-07-08 Thread Christopher Heschong
I quite enjoyed the interview at http://www.dynamicwebpages.de/90.interview-zeev-suraski-linuxtag2001.php translated via babelfish. A tasty morsel: "Also the attempt to make PHP the egg-laying woolly milch sow is not my opinion after the actual target for PHP." -- Zeev Suraski (translated f

Re: [PHP] Printable Report Generator

2001-07-08 Thread Christopher Heschong
If the browser supports CSS, you can define pagebreaks when it is printed. There is an excellent article at: http://www.stars.com/Authoring/Languages/XML/BeginningXHTML/printing.html It won't work in all browsers, but it gets the job done often enough. On Sunday, July 8, 2001, at 10:04 AM, Ke

Re: [PHP] Storing serialized classes in database

2001-07-09 Thread Christopher Heschong
When you serialize() an object in PHP, it only stores the properties, not the methods. This way you can change any of the methods in your class definitions, or add new properties, and when the data is unserialize()d, it will fit into the new class definition. The latest (development) version

Re: [PHP] how to use/compile ssl with apache and php?

2001-07-10 Thread Christopher Allen
Seb-, http://www.devshed.com/Server_Side/PHP/SoothinglySeamless/ I used this tutorial the first time. It was very straight forward. Remember that you dont need rsaref files anymore in the US. >>could someone explain me what i need to ad to the apache compiling >>string ? >>( i build php in apache

[PHP] Arggg

2001-07-12 Thread Christopher Allen
PHP PEOPLE, Sorry this is way off topic but can anyone point me to a place where I can find out how to mount/automount a tape drive in Linux? I need to know device name mount commands and tape drive commands etc...Been searching on the net for hours and the bits and pieces are not forming a whole

Re: [PHP] Re: Mcrypt fails to run

2001-07-12 Thread Christopher Ostmo
and change line 109 to: srand48((long)time(0) * (long)getpid() * (long)(php_combined_lcg()*(double)1.0)); You should check your server log files. If httpd is core dumping when you run mycrypt commands, then this is your problem. The fix was documented at bugs.php.net and was incorporated int

Re: [PHP] encryption methods?

2001-07-13 Thread Christopher Ostmo
theirs. If you don't need decrypt capabilities, most (all?) SQL database servers have support for one-way encryption. It's not efficient to store user data in "PHP scripts" (or any other script for that matter) as was stated in the initial message. If you have access to a dat

Re: [PHP] Web application?

2001-07-13 Thread Christopher Ostmo
r server down considerably, but that's WAY beyond the scope of an e-mail message. If you want to find out more about that stuff, I recommend the book called "MySQL" by Paul DuBois. Have fun... Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Application Ideas Meeting cut

RE: [PHP] Web application?

2001-07-13 Thread Christopher Ostmo
urse). Please don't take this as an anit-PostgreSQL message! I really like the database server and I continue to use it. The fact of the matter is that in a side-by-side comparison for nearly anything you could conceive of doing with data storage/retrieval on the web, MySQL is going to have a d

Re: [PHP] Session Question

2001-07-15 Thread Christopher Ostmo
pd process is owned by "nobody" you can issue the following command from a prompt: chown -R nobody /home/tgmalone/sessn-log You must have root access to use chown. If you do not have root access, you'll need to use chmod to make the directory world writable: chmod -R 777 /home/tgm

[PHP] Simple (??) control structure problem

2001-07-15 Thread Christopher Kaminski
I'm trying to write a simple weblog script, but I've encountered a perplexing problem. I'm sure I'm overlooking something simple. I'm trying to take form input, parse it, and wrap it in tags. The problem is removing extra carriage returns. I'm sure there's a problem with the "if ($sentence !=

Re: [PHP] Simple (??) control structure problem

2001-07-15 Thread Christopher Kaminski
Thanks alot! I didn't do that because I wasn't aware of the nl2br() function. I just taught myself php last weekend. There's still plenty for me to learn. "Yz James" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > H

Re: [PHP] Credit card number checker?

2001-07-16 Thread Christopher Ostmo
ript) Unless it becomes absolutely ridiculous, I don't think that your bank is going to complain for too many bad cards. After all, they're still making money off of you. If they do get upset, you ought to find a new bank. Seriously. Many banks would be very happy to have your b

Re: [PHP] Credit card number checker?

2001-07-16 Thread Christopher Ostmo
rocessing. Since this solution requires sending the card to the bank for processing to see if the number is valid, it would defeat the purpose. Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Application Ideas Meeting cutting edge dynamic web site needs since the dawn of Inte

Re: [PHP] Credit card number checker?

2001-07-16 Thread Christopher Ostmo
re becoming law). I don't recall how old the case is, so it may have been a long time ago. At any rate, I'm interested to see what you come up with now. Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Application Ideas Meeting cutting edge dynamic web site needs since th

Re: [PHP] Credit card number checker?

2001-07-16 Thread Christopher Ostmo
Ashley M. Kirchner pressed the little lettered thingies in this order... > Christopher Ostmo wrote: > > > By law, the numbers are supposed to be > > generated at random and not generated by any kind of algorithm or > > formula. > > CC# must pass the Luhn MO

Re: [PHP] Credit card number checker?

2001-07-16 Thread Christopher Ostmo
ice. > Yes, I mis-read your statement. Sorry. I was just wrong all around on this one! :-) Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Application Ideas Meeting cutting edge dynamic web site needs since the dawn of Internet time (1995) For a good time, http://www.App

Re: [PHP] Unexplained Timeout

2001-07-16 Thread Christopher Ostmo
> } > echo " > > Please use your Back button and > try again > (please do not Reload or Refresh your browser) > > > "; > exit; > } > I didn't really examine the rest of the code too closely, but I'd be willing to bet that the cod

Re: [PHP] Unexplained Timeout

2001-07-16 Thread Christopher Ostmo
bove. Try: ${"element2".$z} I quite honestly don't know what problems may arise when you place the end variable within the quotes, but I've never been able to make code work predictably that way. Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Application Id

Re: [PHP] mysql_query problem

2001-07-16 Thread Christopher Allen
> $testResult = mysql_query("SELECT * FROM login_table where Pass = $query = "select * from login_table where Pass=password('$password')"; then echo $query to the screen and make sure you see what needs to be there. Also try mysql_error etc.. from the manual GL --ccma -- PHP General Mail

Re: [PHP] Hi all.

2001-07-17 Thread Christopher Ostmo
Johan Vikerskog (ECS) pressed the little lettered thingies in this order... > When i install PHP. > > Do i have to make anything special to activate the ldap function? > > //Johan > ./configure --with-ldap http://www.php.net/manual/en/install.configure.php Good luck...

Re: [PHP] note to PHP developers

2001-07-17 Thread Christopher Allen
Also, postfix works fine for me... > On a side note, qmail has a wrapper that pretends to be sendmail. You can > overwrite the /bin/mail with it and it will behave and accept mail just like > sendmail, but send it through qmail-smtp. > > > - changed php.ini path -> qmail path -- PHP General

Re: [PHP] Code running function

2001-07-17 Thread Christopher Ostmo
eval() ? http://www.php.net/manual/en/function.eval.php Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Application Ideas Meeting cutting edge dynamic web site needs since the dawn of Internet time (1995) Business Applications: http://www.AppIdeas.com/ Open Source App

Re: [PHP] 50 SEX Sites in ONE Affiliate Portal.................

2001-07-17 Thread Christopher Ostmo
n click on the following link: > > mailto: [EMAIL PROTECTED]?subject=More_Info > > If you do not wish to receive further mailings, please do NOT reply to this > message. > But I do! I do! I LOVE Adult Entertainment. The Godfather and Shawshank Redemption are two of my favorite

Re: [PHP] php- something that i don't understand

2001-07-17 Thread Christopher Ostmo
d argument is not a valid MySQL result resource in > c:\inetpub\wwwroot\PhpAndMysqlTest\test2\reg1.php3 on line 8 > > Change line 7 to this: $result = mysql_db_query("users", $query) or die(mysql_error()); What is the error after you do that? Christopher Ostmo a.k.a. [EMAIL

Re: [PHP] Need help with formatting time

2001-07-17 Thread Christopher Ostmo
n do some nifty stuff with english ordinal suffixes that have nothing to do with dates or time). http://www.php.net/manual/en/function.date.php http://www.php.net/manual/en/function.mktime.php Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Application Ideas Meeting cutting e

RE: [PHP] Need help with formatting time

2001-07-17 Thread Christopher Ostmo
sent *tested* code that will fit on a single line and will do exactly what the above is doing. Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Application Ideas Meeting cutting edge dynamic web site needs since the dawn of Internet time (1995) Business Applications: http://

Re: [PHP] Time that db´s connection is keep alive

2001-07-17 Thread Christopher Ostmo
onnection or leave them open at the cost of requiring extra operating memory and system resources. Decisions, decisions... Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Application Ideas Meeting cutting edge dynamic web site needs since the dawn of Internet time (1995)

Re: [PHP] sql query successful

2001-07-18 Thread Christopher Ostmo
y("SELECT * FROM table ORDER BY rand()")) { echo "Success!"; } else { echo "Failure!"; } Your statement above is checking to see if the fact that $sql is equal to mysql_query("SELECT * FROM table ORDER BY rand()") is TRUE

Re: [PHP] sql query successful

2001-07-18 Thread Christopher Ostmo
to rewrite all of your of code to eliminate errors. It only checks for the validity of your query. To ask why this doesn't work would be the same thing as asking why you can type this query from the command-line mysql client and the query succeeds without an error. It succeeds and says

RE: [PHP] sql query successful

2001-07-18 Thread Christopher Ostmo
Mark Roedel pressed the little lettered thingies in this order... > > -Original Message- > > From: Christopher Ostmo [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, July 18, 2001 2:43 PM > > To: [EMAIL PROTECTED] > > Subject: Re: [PHP] sql query successfu

Re: [PHP] adding the date to a database

2001-07-18 Thread Christopher Ostmo
ery = "Insert INTO visits (visName, date) values ('$name', NOW()) " ; This returns a "-MM-DD HH:MM:SS" string that MySQL will automatically convert to any of the date/time field types. Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Appl

Re: [PHP] a good PHP editor

2001-07-19 Thread Christopher Allen
I wonder if Emacs runs on win2k it ran on win95 great... -ca - Original Message - From: "Michael Champagne" <[EMAIL PROTECTED]> To: "doug" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, July 19, 2001 12:16 PM Subject: Re: [PHP] a good PHP editor > VIM on Windows. Free and

Re: [PHP] number generat {Luhn algorithm}

2001-07-23 Thread Christopher Ostmo
Yamin Prabudy pressed the little lettered thingies in this order... > anybody know about the Luhn algorithm ?? > how can i do that in php > > yamin > http://www.zend.com/codex.php?id=31&single=1 Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Applic

Re: [PHP]MySQL error, what's wrong here..

2001-07-23 Thread Christopher Ostmo
songid field. Another thing to try is to "or die" your query to check to see if the SQL syntax is OK: $result=mysql_query($query,$connection) or die(mysql_error()); Good luck... Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Application Ideas Meeting cutti

[PHP] sendmail administration api?

2001-07-29 Thread Christopher Cheng
Does anybody know any Sendmail Administration API for PHP? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Realm Auth Via Non-Sessions

2001-07-30 Thread Christopher Allen
Greetings: OT (yes)? When a user leaves a realm(.htaccess) from which they have logged into is there any kind of notification back to the server? I would like keep a log of such activities and do not want to do any session type of jizz jazz(cookies etc). I would think that there would need to be

Re: [PHP] Find and Replace

2001-07-30 Thread Christopher Allen
!!Be careful of this, its super powerful!! try it on 1 test file first and then do the wildcard... from the unix command line: bash>perl -p -i -e s/myself.inc/myself.inc.php/ *.php so its: perl -p -i -e s/original_text/text_to_replace/ file_name(s) - Original Message - From: "Shr

Re: [PHP] Re: Realm Auth Via Non-Sessions

2001-07-31 Thread Christopher Allen
Day late and a dollar short bro! But thanks anyways. > > When the browser quits, it loses its memory of your username/password. > > That's all there is to it. > Also, I was reading somewhere last week at some hosting companies website that they stream http?? What is that? Is it a gimmick? Or does

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Christopher Allen
PhP'ers I would suggest that people not think too hard about this and continue programming. Thats right get back to work...:) Have Fun! --ccma -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To cont

[PHP] Storing Credit Card Numbers, etc.

2001-08-13 Thread Christopher Raymond
e .htaccess and .htpasswd to help me out? Or don't they even apply? My intention is to store the user's password encoded with md5 or something and also to develop my own cipher for disguising the credit card numbers as well. Any suggestions? Thanks, Christopher Raymond -

[PHP] PHP or SSI -- What's faster?

2001-08-14 Thread Christopher Raymond
PHPers: So if I was just going to need includes on a few pages, what's faster PHP or SSI on Linux/Apache? Christopher Raymond -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the

[PHP] PHP Shopping Carts ??

2001-08-14 Thread Christopher Raymond
Could anyone point me in the direction of some PHP shopping cart scripts? Thanks, Christopher Raymond -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail

[PHP] Browser Detection & Redirection -- PHP or Apache ???

2001-08-17 Thread Christopher Raymond
27;s them know their browser is in-compatible. I know this is something JavaScript can do, but again that relies on the browser. Thanks for any help, Christopher Raymond -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[PHP] Newsgroup?

2001-08-22 Thread Christopher Raymond
Is this PHP listserve available as a newsgroup? I'm getting tired of managing this much mail everyday. I'd like it a bit simpler. If this list is not available, are there other equally busy newsgroups for PHP? Thanks, Christopher Raymond -- PHP General Mailing List (http://w

[PHP] file upload size, before upload complete

2001-08-30 Thread christopher johnson
Can anyone think of a way to determine the file size of what the user is uploading before it has been fully uploaded? I know because of security restrictions javascript can't do this, but is it possible in php? I'm trying to make an upload progress bar, it doesn't have to be exact, but a close app

[PHP] WDDX and binary data

2001-09-14 Thread Christopher Heschong
Despite the fact that PHP's WDDX functions don't support a "binary" type, most binary data comes through just fine, and in fact, the WDDX serialize function can encode certain types of binary data, such as a null character: But the deserialize process dos not retain these characters. Is this

[PHP] New version of community calendar released!

2001-10-04 Thread Christopher Ostmo
list. Stop by and have a look! Thanks... Christopher Ostmo a.k.a. [EMAIL PROTECTED] AppIdeas.com Innovative Application Ideas Meeting cutting edge dynamic web site needs since the dawn of World Wide Web time (1995) Business Applications: http://www.AppIdeas.com/ Open Source Applications: http

[PHP] confused about magic quotes

2004-09-17 Thread Christopher-Robin
txt); } } return $txt; } The same is to be done for , but there's nothing written about the interaction of and . So, could anyone help me, please? Thanks, Kai aka Christopher-Robin PS: Apologies for my bad english. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PHP-DEV] Fatal error: Call to a member function on a non-object

2008-11-17 Thread Christopher Vogt
ely hides a likely group of errors from the notification system. I hopes this motivates the question a little better. But the question remains. Are there reasons to have a Fatal error here? For comparison: Python throws an exception in a comparable case, allowing me to handle the error. Best rega

[PHP] Re: [PHP-DEV] Fatal error: Call to a member function on a non-object

2008-11-17 Thread Christopher Vogt
ly would have told you that. I am sorry about that. I'll first consult general@ in the future. Best regards Christopher -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PHP-DEV] Fatal error: Call to a member function on a non-object

2008-11-17 Thread Christopher Vogt
happy with it. And I think being able to handle fatal errors, whenever possible would be a very useful feature. What about E_RECOVERABLE_ERROR, couldn't calling a method on a non-object trigger E_RECOVERABLE_ERROR, instead of E_ERROR? Best regards Christopher -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Fatal error: Call to a member function on a non-object

2008-11-18 Thread Christopher Vogt
Hej, I created a change request: http://bugs.php.net/bug.php?id=46601 Best regards Christopher -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] New PHP User with a simple question

2009-01-24 Thread Christopher W
At least I hope it is simple... I am trying to get an HTML menu link to set a variable's value. For example, when a user clicks the "Home" button on my page it would cause $page = "home"; or clicking the "About Us" button will set $page="about_us"; etc. I think this should be fairly simple bu

Re: [PHP] New PHP User with a simple question

2009-01-24 Thread Christopher W
-- "Lars Torben Wilson" wrote in message news:36d4833b0901242313r435860b3q7f3f4f0eea621...@mail.gmail.com... > 2009/1/24 Christopher W : >> At least I hope it is simple... >> >> I am trying to get an HTML menu link to set a variable's value. For >> example, when a user clicks the "Hom

Re: [PHP] New PHP User with a simple question

2009-01-24 Thread Christopher W
t that's not nearly as good or reliable. > > Sorry if there's too much info, but I'm guessing this is roughly what > you'll be doing. > If you want to have more than one variable (like say a sub page) then > you add *&* between each variable. E.g > >H

Re: [PHP] New PHP User with a simple question

2009-01-26 Thread Christopher W
Kevin, Your link, with some modifications to fit my site layout, worked just as I was hoping for. Thank you very much. -- "Kevin Waterson" wrote in message news:20090126092451.7aab63ff.ke...@phpro.org... > >> > Sorry, I am also new to the etiquette of these mail lists. > > Hope this will ge

[PHP] Re: New PHP User with a simple question

2009-01-26 Thread Christopher W
, looking at other people's php files and lots of practicing I may one day "get it." I am truly grateful for all the time all of you spent in trying to help. -- ""Christopher W"" wrote in message news:f5.56.55096.935eb...@pb1.pair.com... > At least I hope it

[PHP] Port Block

2007-01-03 Thread Christopher Deeley
I used to use mailenable to send e-mails from a site hosted on my computer, to email anyone. Now my ISP blocked port 25 so I can't connect directly to any smtp servers like google to send e-mail directly from my computer. Does anyone know of an open SMTP server which doesn't use port 25?

[PHP] First Character In A String

2007-01-21 Thread Christopher Deeley
Can anyone tell me if there is a function to return the first letter in a string, such as: $surname="SMITH"; $forename="ALAN"; Is there a function which I can use to make $forename "A", so I can display it as A SMITH? Thank You In Advance

Re: [PHP] Who uses PHP

2007-02-03 Thread Christopher Weldon
anguage could be inherently more security or why one could not write PHP code which implemented the same techniques as 'XXX'. (No, I do not know what 'XXX' might be.) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Christopher Weldon President & CEO Cerberus Interactive, Inc. [EMAIL PROTECTED] (866) 813-4603 x605 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Billing client for studying documentation

2007-02-03 Thread Christopher Weldon
l part of the development and "coding" for the project and should be billed to the client appropriately. -- Christopher Weldon President & CEO Cerberus Interactive, Inc. [EMAIL PROTECTED] (866) 813-4603 x605 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Stuffing code into variable

2007-02-03 Thread Christopher Weldon
urn "\n". $sqlRow['time'] ." \n".$row['field'].""; // Simplified for time purposes. } // Execute the query foreach ($row = mysql_fetch_array($query)) { echo drawTableRow($row); } /me pours you a cold frosty one to soothe the pain of the long

Re: [PHP] PHP4 to PHP5 issue

2007-02-07 Thread Christopher Weldon
ns of your PHP files, as you could then do directory specific PHP4/5 app running. You still have to make certain Apache has both the PHP4 and PHP5 modules loaded, obviously. -- Christopher Weldon President & CEO Cerberus Interactive, Inc. [EMAIL PROTECTED] (866) 813-4603 x605

[PHP] open_basedir

2007-02-08 Thread Christopher Deeley
Can anyone tell me how to set open_basedir in php.ini, to two directories like open_basedir = c:\www & c:\myhomepage thanks

[PHP] Re: [PHP-DB] PHP & Database Problems -- Code Snippets

2012-05-02 Thread Christopher Jones
I noticed the use of SQL concatenation like: $allowed_fields = array ( 'Site' =>$_POST['Site'], 'MedRec' => $_POST['MedRec'], 'Fname' => $_POST['Fname'], 'Lname' => $_POST['Lname'] , 'Phone' => $_POST['Phone'] , 'Sex' => $_POST['Sex'] , 'Height' => $_POST['Height'] ); if(emp

[PHP] IE9 Large Post Hangs for 5 Minutes Plus

2012-06-17 Thread Christopher Cowan
I'm working on an issue with IE9. I have a web app that posts a multipart form via Ajax. The content-length is about 1MB often larger (uploading GPS tracks). Chrome, Safari and Firefox all make the POST request then immediately (after the POST completes receives the response). IE on the other ha

RE: [PHP] best ways to recruit volunteers for a PHP framework

2011-06-28 Thread Christopher Lee
I would definitely be interested in working on/developing the user manual for the project. You have my interest. Best, Christopher From: jean-baptiste verrey [jeanbaptiste.ver...@gmail.com] Sent: Tuesday, June 28, 2011 4:24 PM To: php-general

RE: [PHP] PHP frameworks

2011-08-05 Thread Christopher Lee
ork? Best, Christopher From: Laruence [larue...@baidu.com] Sent: Sunday, July 24, 2011 11:19 PM To: Floyd Resler Cc: PHP Subject: Re: [PHP] PHP frameworks Hi: if you have high performance need, you can considering Yaf( a PHP framework which is build in PHP

RE: [PHP] book quest

2011-09-28 Thread Christopher Lee
I agree with Daniel. I would be willing to contribute to that type of collaborative initiative. Best, Christopher Lee -Original Message- From: paras...@gmail.com [mailto:paras...@gmail.com] On Behalf Of Daniel Brown Sent: Wednesday, September 28, 2011 7:24 PM To: Andy McKenzie Cc: php

RE: [PHP] Friday Distraction

2011-10-21 Thread Christopher Lee
t? I would > rather spend my time programming, teaching programming, and reading about > programming. > > Maybe I'm just getting too old for this stuff. > > Cheers, > > tedd First, I hope that I am posting my response to Tedd correctly (no top posts..). Second, I tot

[PHP] RSS Feed

2011-11-15 Thread Christopher Lee
hope that I have adequately explained my needs. Thank you all in advance for your help. Best, Christopher This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received it in error, please notify the sender

RE: [PHP] RSS Feed

2011-11-15 Thread Christopher Lee
Hello Matijn, Thank you for the response and the link. I had not tried Google but, instead, reached out to the list first. Thought I would get people who have developed similar tools with success..:-) I will certainly reference the link and give this try. Best, Christopher -Original

[PHP] PHP based online survey tool

2011-11-26 Thread Christopher Lee
anyone have any suggestions for PHP based online survey tools? Any suggestions would be greatly appreciated. Thank you all in advance. Best, Christopher This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received

[PHP] Online Form Creation

2011-12-20 Thread Christopher Lee
having trouble figuring out the best way to create the form and ensure the data is collected properly in the DB. Any suggestions would be greatly appreciated. Best, Christopher This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private

RE: [PHP] Online Form Creation

2011-12-22 Thread Christopher Lee
to set-up a similar matrix to allow the user to enter a numerical value. I will follow your suggestion and submit my work. Best, Christopher -Original Message- From: Tedd Sperling [mailto:tedd.sperl...@gmail.com] Sent: Wednesday, December 21, 2011 12:05 PM To: PHP-General List Cc: C

RE: [PHP] Online Form Creation

2011-12-22 Thread Christopher Lee
ions from everyone. I probably could have worded my initial email a little better. Thank you to Tedd as well. Best, Christopher -Original Message- From: Govinda [mailto:govinda.webdnat...@gmail.com] Sent: Thursday, December 22, 2011 12:15 PM To: Christopher Lee Cc: PHP-General List Su

RE: [PHP] Online Form Creation

2011-12-22 Thread Christopher Lee
[mailto:tedd.sperl...@gmail.com] Sent: Thursday, December 22, 2011 1:43 PM To: PHP-General List Cc: Christopher Lee Subject: Re: [PHP] Online Form Creation On Dec 22, 2011, at 11:22 AM, Christopher Lee wrote: > Tedd, > > I appreciate your reply to my post. In no way do I expect anyone to code

[PHP] Uploading and creating an email attachment, WITHOUT a DB on server

2012-03-27 Thread Christopher Svanefalk
? Or does it have to go intermediare storage? Thanks in advance for any help! -- Best, Christopher Svanefalk

[PHP] Re: Uploading and creating an email attachment, WITHOUT a DB on server

2012-03-27 Thread Christopher Svanefalk
Addendum: what standard functions could I invoke to accomplish the file system view part? On Tue, Mar 27, 2012 at 2:37 PM, Christopher Svanefalk < christopher.svanef...@gmail.com> wrote: > Dear all, > > I am rather green to PHP and web programming in general, and would just >

Re: [PHP] Re: fopen

2005-03-18 Thread Christopher Evans
try $results = fopen($datafilename, "w+"); I am newbie at php so that may not work. -- --chris 1-916-501-1423 http://bbx.flnet.org/nxdos/";>http://bbx.flnet.org/nxdos/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Last visitors (SOLVED?)

2005-04-19 Thread Christopher Fulton
> I did, the problem is the client is on a box with mySql 3.23.x or 4.0.x, he > is deciding to upgrade to a dedicated box but then the host he is looking at > says they will charge him if they are to upgrade to mysql 4.1 (hence i cant > even use sub-selects) > (Sorry I didnt mention the MySql versi

Re: Re[2]: [PHP] Re: 1 web site, 3 servers, 3 countries - best practises?

2005-04-22 Thread Christopher Fulton
> > This isn't about redundancy, it's about enhancing the experience for > > customers physically located thousands of miles away from the server > > they are trying to access. So, bring the content closer to them and > > drop their wait times massively. It's easy for those of us sat on the > > end

Re: [PHP] Splitting Vars from MySQL in PHP

2005-04-29 Thread Christopher Fulton
On 4/29/05, jlfx mailgroups <[EMAIL PROTECTED]> wrote: > > I remember in Perl I used to extract vars from a single fetchrow by adding > each var name to the beginning (like this). Only this ain'ta workin :)... > Anyone know the right syntax to do this? > > ($var1, $var2, $var3)= mysql_fetch_array

[PHP] Compiling with pfpro (Payflow) with new SDK for Linux

2004-06-22 Thread Christopher Jones
t; I have attempted to find a workaround by altering the configure script, but have been unable to do so. I think some work on this would be appropriate as the information on php.net is out of date regarding a Beta SDK. Any help you could give to me would be much appreciated. Best regards, C

[PHP] Query result column to array

2006-08-30 Thread Christopher Watson
ing some variation of the code above? Christopher Watson Principal Architect The International Variable Star Index (VSX) http://vsx.aavso.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP Access Violations

2006-09-05 Thread Christopher Watson
o understand that this machine was WIPED CLEAN a couple of weeks ago, and I haven't installed anything on it except the OS and essential development tools. This machine is devoid of any malware, and is extremely process poor. It's a super clean system. Does someone, anyone, has any insig

Re: [PHP] PHP Access Violations

2006-09-05 Thread Christopher Watson
ed an Access Violation at 7C911F6C" Dead. I check the error log. Nothing. Not a thing. -Christopher On 9/5/06, Wolf <[EMAIL PROTECTED]> wrote: First thing you need to do is log the boot through the crash of PHP, it sounds like something is getting hung in the processes and crapping

Re: [PHP] PHP Access Violations

2006-09-06 Thread Christopher Watson
Hi Chris, memtest run over several hours, with 2000% coverage. No errors. -Chris On 9/5/06, Chris <[EMAIL PROTECTED]> wrote: Run memtest or something over your machine, sounds more like a hardware issue than anything else. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

Re: [PHP] PHP Access Violations

2006-09-06 Thread Christopher Watson
t;[EMAIL PROTECTED]> wrote: Christopher Watson wrote: > memtest run over several hours, with 2000% coverage. No errors. My impression of this is that it either has to be a software problem in either PHP or the server (pretty much guaranteed your PHP code should never be allowed to tri

Re: [PHP] PHP Access Violations

2006-09-06 Thread Christopher Watson
Spoke too soon. After a reboot, I had only IE and Homesite open, making changes to PHP code and running the app, and it hit an access violation. So SQLyog ain't it. -Chris On 9/6/06, Christopher Watson <[EMAIL PROTECTED]> wrote: Thanks for the input, Jon. I'll get to th

Re: [PHP] PHP Access Violations

2006-09-07 Thread Christopher Watson
oblem again in order to get the exception data. This is looking more and more like a SQLyog problem. Maybe I should try another MySQL admin client. -Christopher On 9/6/06, Christopher Watson <[EMAIL PROTECTED]> wrote: Spoke too soon. After a reboot, I had only IE and Homesite open, making cha

Re: [PHP] Newbie question about

2006-09-09 Thread Christopher Weldon
ionally, through some of my training courses, another reason behind it is that if you use PHP to generate any XML documents, XML uses syntax, and it's better to turn off the short tags in your PHP config so that PHP doesn't attempt to interpret those tags as PHP code. - -- Christopher Weld

Re: [PHP] Using a variable to call another variable

2006-09-09 Thread Christopher Weldon
something like that. < :-) > > $easy_peasyier = array("foo1" => 1, "foo2" => 2, "foo3" => 3); > > echo($easy_peasyier['foo1']); > > tedd class myClass { private var $_001; private var $_002; pri

Re: [PHP] PHP Access Violations

2006-09-09 Thread Christopher Watson
Hi Wolf, Please correct me if I'm wrong, but neither of these tools from the MySQL team can SSH tunnel. I need that. -Chris On 9/8/06, Wolf <[EMAIL PROTECTED]> wrote: MySQL Query Tool MySQL Admin Tool Both free, both work flawlessly w/ MySQL and both maintained by MySQL Wolf

Re: [PHP] FUNCTION TO CHECK IMAGE

2006-09-10 Thread Christopher Weldon
**o<0>o** > - From what it sounds like you are doing, you are uploading a file through some form, then manipulating it's size. Is this correct? What happens when you stop manipulating it's size and try to view just the uploaded file? - -- Christopher Weldon, ZC

Re: [PHP] PHP 4 OOP, re-using a object?

2006-09-10 Thread Christopher Weldon
t's the error, and how do you have the class and functions defined? - -- Christopher Weldon, ZCE President & CEO Cerberus Interactive, Inc. [EMAIL PROTECTED] 979.739.5874 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.1 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.m

Re: [PHP] does magic_quotes_gpc prevents sql injection through forms?

2006-09-11 Thread Christopher Weldon
just straight-up typecast: $clean['var'] = (int) $_POST['var']; The best way is to check to see if it is_numeric rather than force it's type to be integer - but for simplicities sake, it can be used. - -- Christopher Weldon, ZCE President & CEO Cerberus Interacti

Re: [PHP] strip urls

2006-09-11 Thread Christopher Weldon
#x27;); Second, don't forget the tags you'll need in the preg_replace function: $str = preg_replace('/\]*\>/', "\1", $str); You can use other characters, such as ! if you want instead of /, but you have to use the same at the beginning and the end. - -- Christopher Wel

<    1   2   3   4   5   6   >