[PHP] PHP and XML locking up windows.

2001-01-18 Thread chad
to run this, I get an error box saying that apache has performed an illegal operation and then my computer locks up. If I comment out the set_*_handler statements, everything runs fine. Apache will display the xml file just fine if I hit it directly. (If that is of any value.) Anyone have a

[PHP] exec()

2002-02-18 Thread Chad
Does anyone know if I can exec a perl script from a php script even if my isp doesn't allow me to run perl scripts from the command line?

[PHP] Confused about $_SESSION and $_COOKIE scope..

2002-12-06 Thread Chad Day
sion that the superglobals would be available from basically anything.. apparently I was wrong. Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Cookie handling, NS 4.x?

2002-12-09 Thread Chad Day
AME]; In IE (all versions I have tested), this works fine. In NS 7, this works fine. In NS 4.7 and 4.8 .. nothing is returned. No cookie is set in the cookies.txt file at all. Can anyone tell me why? I've been poking around the PHP manual pages but haven't come across anyt

RE: [PHP] Cookie handling, NS 4.x?

2002-12-09 Thread Chad Day
ECTED]] Sent: Monday, December 09, 2002 4:31 PM To: Chad Day; php general Subject: Re: [PHP] Cookie handling, NS 4.x? --- Chad Day <[EMAIL PROTECTED]> wrote: > I am having a fairly confusing problem with setcookie() > in NS 4.x. > > My script: > > nscookie.php: > &

RE: [PHP] Cookie handling, NS 4.x?

2002-12-10 Thread Chad Day
nd of a pain, but this is what I get for trying to make a site NS 4.x compatible I guess. Is there any way to specify the domain of a cookie with NS 4.x in this kind of situation? Thanks, Chad -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09,

RE: [PHP] Cookie handling, NS 4.x?

2002-12-10 Thread Chad Day
the NS 4.x Header problem popped up, and now the domain issue.. In IE, the code I posted below: setcookie("NSUSERNAME", "cday", time()+2592000, "/", ".domain.com"); echo ""; works fine in regards to setting the cookie still. NS 4.x is a piece of c

RE: [PHP] Cookie handling, NS 4.x?

2002-12-10 Thread Chad Day
So, basically... cookies aren't going to work in NS 4.x if I specify a domain and need to do a redirect afterwards. (I tried the dot at the end, also no go) ... wow, that sucks. :\ Thanks, Chad -Original Message- From: Jaime Bozza [mailto:[EMAIL PROTECTED]] Sent: Tuesday, Decemb

RE: [PHP] Cookie handling, NS 4.x?

2002-12-10 Thread Chad Day
, and I can continue using Header: calls .. hmm. Thanks for all the help, Jaime and Chris, much appreciated. Chad -Original Message- From: Jaime Bozza [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 10, 2002 10:22 AM To: 'Chad Day' Cc: 'php general' Subject: RE: [P

[PHP] Creating access DB in PHP ..

2002-12-19 Thread Chad Day
. Is this possible in any way, even if I have to go some route like creating it as a MySQL DB, doing a conversion to mdb (I've seen conversion tools for vice versa), etc? .. Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Finding # of weekdays between 2 dates..

2002-12-26 Thread Chad Day
he time stamps to pass to the function, and I've confirmed the dates I've entered are correct.. echo weekdaysBetween($nowdate, $futuredate, 2); Returns 4 .. can anyone assist? Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Finding # of weekdays between 2 dates..

2002-12-27 Thread Chad Day
y too far in some cases with ceil). Perhaps this function I found is just not the right way to go about it, but if anyone has any more insight, it's greatly appreciated. Chad -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED]] Sent: Friday, December 27, 2002 2:48 AM To

[PHP] Round robin script revisited..

2002-12-30 Thread Chad Day
e can help me out or point me in the right direction, I'd appreciate it. Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Warning?

2002-12-30 Thread Chad Day
you may want to check that as well.. Chad -Original Message- From: Doug Coning [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 12:25 PM To: php general Subject: [PHP] Warning? Hi everyone, I'm using Dreamweaver to create an insert page and after the record is inserted

RE: [PHP] Round robin script revisited..

2002-12-30 Thread Chad Day
array_push($teamarray, $last_team); } */ } // echo ''; print_r($games); ?> -Original Message- From: Chad Day [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 10:57 AM To: php general Subject: [PHP] Round robin script revisited.. I was trying to find a scri

RE: [PHP] Round robin script revisited..

2002-12-30 Thread Chad Day
, $last_team); if ($even) { array_push($teamarray, $last_team_save); } Hope this helps anyone else who needs it. Chad -Original Message- From: Chad Day [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 2:03 PM To: php general Subject: RE: [PHP] Round robin

[PHP] Recommend payment processors?

2003-01-03 Thread Chad Day
ral&m=102165623600464&w=2 Reading that, it sounds like it's not possible to use Payment Pro, or possibly other systems, with PHP .. is this correct? Some of the other posts in the archive sounded like people were using it, so I'm not really sure what is possible at this point. Thanks,

RE: [PHP] Recommend payment processors?

2003-01-03 Thread Chad Day
processors? I use PayPal. Does not require a merchant account. PHP payment interface and interaction is easy to implement. Via HTML in your webpage, you pass to PayPal the URL of the PHP script to be executed when a payment is received. - Original Message ----- From: "Chad Day" &l

[PHP] Template tutorials?

2003-01-10 Thread Chad Day
I'm googling around for template tutorials and such after seeing a link to the Smarty template engine .. can anyone point me to any particularly good ones? I've always been going with the 'one-file' approach .. which I think it's time I changed. Thanks, Chad -- PHP G

[PHP] array_sum, multidimensional arrays?

2003-01-21 Thread Chad Day
Is it possible to use array_sum to add up values in multidimensional arrays? I have an array like: $array[0]["VALUE"] = 10; $array[1]["VALUE"] = 8; $array[2]["VALUE"] = 5; $array[0]["OTHERVALUE"] = 20; $array[1]["OTHERVALUE"] = 15; $array[2][

[PHP] security question regarding including files..

2003-01-21 Thread Chad Day
m going to force the files to be stored offsite - they dont get to upload anything to the server. I'm just a bit paranoid about this, so I'm hoping someone more security-minded can tell me what to watch out for, what to check, if I'm missing anything.. Thanks, Chad -- PHP G

[PHP] Sorting multidimensional arrays..

2003-01-30 Thread Chad Day
te it. Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] setcookie() in various browsers..

2003-02-07 Thread Chad Day
s, and a lot of people seem to have the same question.. Thanks! Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Limit the amount of returns in a MySQL query

2003-02-07 Thread Chad Day
if (!isset($startlimit)) { $startlimit = 0; } $endlimit = $startlimit + 10; $yourquery = "your query data LIMIT $startlimit, $endlimit" that should give you enough insight on how to work it. Chad -Original Message- From: Daniel Page [mailto:[EMAIL PROTECTED]] Se

RE: [PHP] setcookie() in various browsers..

2003-02-10 Thread Chad Day
Following up from Friday.. no replies over the weekend.. can anyone help? Thanks, Chad -Original Message- From: Chad Day [mailto:[EMAIL PROTECTED]] Sent: Friday, February 07, 2003 3:02 PM To: php general Subject: [PHP] setcookie() in various browsers.. This is with PHP 4.2 and

RE: [PHP] setcookie() in various browsers.. 3rd followup.. anyone?

2003-02-11 Thread Chad Day
g that works in all browsers, and a lot of people seem to have the same question.. Thanks! Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] problem with mysql / auto increment fields.. ?

2003-02-19 Thread Chad Day
this userid var to insert them into a variety of other tables for other things on the site, such as a phpBB account, etc. if multiple people are signing up for accounts at different places, is there the possibility that a duplicate userid could be assigned, or anything like that? Thanks, Chad

[PHP] Reading remote image into a file and displaying..

2003-02-20 Thread Chad Day
r.com/fcgi-bin/oap/generate_magnet?loc_id=$_SESSI ON[ZIP]&code=689861&destination=$_SESSION[ZIP]"); echo $weatherfile; but of course it just outputs the raw image data .. I tried echoing it out in a img src tag, same result. Is there some function I'm unaware of that will help me out h

[PHP] Is the problem a server setting?

2003-03-10 Thread Chad Henderson
uot;",(file($this->template))); 16 } What should I look for? thanks! Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Is the problem a server setting?

2003-03-10 Thread Chad Henderson
ED]> wrote in message news:[EMAIL PROTECTED] You should contact the web hosting system administrator and verify that they upgraded php. From what i can tell it seems that they did upgrade php. -- Ray On Mon, 2003-03-10 at 10:58, Chad Henderson wrote: > I have a number of websites that are o

Re: [PHP] Is the problem a server setting?

2003-03-10 Thread Chad Henderson
your answer. mh. On Mon, 10 Mar 2003, Chad Henderson wrote: > Thanks for the reply. If they did upgrade PHP, which I am fairly sure they > did, are there changes to the new PHP that would prevent the script from > working? Or is it a matter of them not setting up the upgrade t

Re: [PHP] Is the problem a server setting?

2003-03-10 Thread Chad Henderson
unds like either allow_url_fopen is set to false or php was compiled with --disable-url-fopen-wrapper. Either way, checking the output of phpinfo() should give you your answer. mh. On Mon, 10 Mar 2003, Chad Henderson wrote: > Thanks for the reply. If they did upgrade PHP, which I am fairly sure th

[PHP] PHP Mailing list software..

2003-06-06 Thread Chad Day
form, which would require a u/p stored in mysql, preferably in md5 format. I know I'll have to do a lot of customization to get it to integrate into my site, but I'm looking for a solid script that I need to tweak the least. Any suggestions? Thanks, Chad Day -- PHP General Mai

[PHP] FreeBSD 4.6 / PHP 4.2.2 / Apache 2.0.39 install trouble

2002-07-25 Thread Chad Day
amiss? Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] FreeBSD 4.6 / PHP 4.2.2 / Apache 2.0.39 install trouble

2002-07-25 Thread Chad Day
ifficult to get working. :\ Chad -Original Message- From: Tech Support [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 2:49 PM To: Chad Day Subject: Re: [PHP] FreeBSD 4.6 / PHP 4.2.2 / Apache 2.0.39 install trouble Without seeing exactly what steps you took in building both apache and

[PHP] ldap_modify parameters?

2002-08-01 Thread Chad Day
online-leagues.com objectclass: top objectclass: person objectclass: organizationalPerson objectclass: inetOrgPerson objectclass: CommuniGateAccount cn: rn hostServer: online-leagues.com sn: st: st street: str telephoneNumber: tn uid: testing mail: [EMAIL PROTECTED] so I think the dn is right, but I'm not 100% sure now. Any ideas? Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] ldap_modify parameters?

2002-08-01 Thread Chad Day
ites/online-leagues.com/htdocs/ldapform.php on line 31 Chad -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 9:41 AM To: Chad Day Cc: [EMAIL PROTECTED] Subject: Re: [PHP] ldap_modify parameters? I think your problem is that you are passing

[PHP] Pairing algorithm?

2002-08-12 Thread Chad Day
ions of it. Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Pairing algorithm?

2002-08-12 Thread Chad Day
oundcount++; } ?> -Original Message- From: Bas Jobsen [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 12:19 PM To: Chad Day Subject: Re: [PHP] Pairing algorithm? Hi Never Seen it in php. There are many variants, mostly depending on your needs. Do you have the algorithm you

RE: [PHP] How to handle multiple value checkboxes

2002-08-29 Thread Short, Chad
Use the [] along with the type of input you are using. Example: This will send php an array of $thing with whatever is selected. Hope this helps. Chad. -Original Message- From: Lon Lentz [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 4:07 PM To: Php-General@Lists. Php

[PHP] Cry for help

2002-09-12 Thread Chad Winger
I think I can learn this fairly quickly with just a little bit of guidance. It's tough when you go to a PHP channel on IRC and all they tell you is "read the F*G manual!". I just don't want to be fiddling with SSI and text replacers for the rest of my life, if you know what I mean. Anyone who has any thoughts, please reply via email or this forum. I sincerely appreciate it. Cheers, Chad in Florence, Italy [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Cry for help

2002-09-12 Thread Chad Winger
s, I still have lingering questions that I havent been able to resolve. So I have been trying to just have some of my fellow netizens to just point me to the right door in the HUGE hallway of doors that will get me into the proper room in which to learn. So thanks again -Tree Chad Winger <

Re: [PHP] Re: Cry for help

2002-09-12 Thread Chad Winger
that operation, you need to create function_whatever, then run a so_and_so then I could go to the manual, and then learn how to write it. So this is my problem right now, basically not knowing WHAT to learn first. Thoughts? Thanks again -Tree - Original Message - From: Jay Blanchard <

Re: [PHP] Re: Cry for help

2002-09-12 Thread Chad Winger
a form) I would use the unix command > cut to do the operations on the file. Use another exec() or system() and > have it run cut -d | -f 4 yourfile.txt and then return you the output. > > Adam > > On Thu, 12 Sep 2002, Chad Winger wrote: > > > Thanks for the reply :P >

Re: [PHP] Re: Cry for help

2002-09-12 Thread Chad Winger
gt; > 0.02 - actual mileage may vary - insert coin to generate more bs > > Cheers > Will > > > -Original Message- > > From: Chad Winger [mailto:[EMAIL PROTECTED]] > > Sent: 12 September 2002 03:34 PM > > To: [EMAIL PROTECTED] > > Subject: Re: [PHP

[PHP] Re: alphabetical order?

2002-09-17 Thread Chad Winger
Hello Rudolf, Thank you for responding to my post, I really appreciate it. I ran the script you sent me, and then I tried looking up the syntax to try to figure out what it means. As it would be pointless for me just to take suggestions that people send me and then not learn what they mean. The r

[PHP] Help.....still stuck after 3 days :/

2002-09-17 Thread Chad Winger
Hello Rudolf, Thank you for responding to my post, I really appreciate it. I ran the script you sent me, and then I tried looking up the syntax to try to figure out what it means. As it would be pointless for me just to take suggestions that people send me and then not learn what they mean. The r

[PHP] New problem - preg_match?

2002-09-18 Thread Chad Winger
Yes, I'm STILL a newbie :) I've gotten pretty far in a few days thanks to you all. I have a new question for you, maybe this is a bit easier than my last issue. Still using my text file example, which has lines such as: 0706010102|01.01.02|16:00|Serie C2|02|Forlì|Florentia Viola| 0610010102|01.0

[PHP] Commenting out characters?

2002-09-21 Thread Chad Winger
Simple question for the newbie...I hope... The following line is returning an error, and I can't figure out what and how to comment out. I assumed I had to \ the parentheses...but it doesnt work... any suggestion? echo ''."\n "; Thanks -Tree -- PHP General Mailing List (http://www.php.net/

[PHP] Re: Commenting out characters?

2002-09-21 Thread Chad Winger
I figured it out...was the single quotes Disregard Chad Winger <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Simple question for the newbie...I hope... > > The following line is returning an error, and I can't figure o

[PHP] Re: upload files

2002-10-26 Thread Chad Cotton
I just wrote a file upload script and all the information that I needed was here in the manual: http://www.php.net/manual/en/features.file-upload.php There were a couple of "common pitfalls" that it points out, which you should check. Make sure you've defined the various configuration variables

[PHP] PHP to Excel?

2002-06-18 Thread Chad Day
ake a field bold, stuff like that? Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP to Excel?

2002-06-18 Thread Chad Day
Annoying doesn't begin to describe it. I'm going with the HTML/Excel Header bit, since Biffwriter costs way too much for a for-profit business to use. Thanks anyway.. looks pretty neat, and I'll probably use it for some other projects I do. Thanks, Chad -Original Message

[PHP] multi dimensional arrays / radio buttons / mass confusion on my part

2002-07-09 Thread Chad Day
ys in this yet, just been messing with the HTML form array stuff.. Sorry if this is confusing.. if any part needs clarification, please let me know. Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Dumb session / cookie / password questions

2002-07-10 Thread Chad Day
meone from spoofing that cookie? I obviously don't want to put the password in a cookie .. can someone point me in the direction of an article about this? I've searched around, but I'm not finding stuff about in a preventing spoofing / security aspect. Thanks, Chad -- PHP Genera

[PHP] Sessions / logins / cookies / security

2002-07-16 Thread Chad Day
t use a user ID, couldn't someone just change that ID value and 'become' another user? Thanks for any advice, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Sessions / logins / cookies / security

2002-07-16 Thread Chad Day
Anyone? Can someone at least point me to some web article for recommendations? I saw some examples where a password variable was stored, but is that really safe (as long as I MD5 it first?) Chad -Original Message- From: Chad Day [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 16, 2002

RE: [PHP] Making .phtml an extension

2001-02-21 Thread Angerer, Chad
assuming you are using Apache... add AddType application/x-httpd-php .phtml to your httpd.conf file -Original Message- From: Brandon Orther [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 21, 2001 11:14 AM To: PHP User Group Subject: [PHP] Making .phtml an extension Hello, I a

Re: [PHP] CGI BIN PHP

2001-02-21 Thread Chad Guilette
hehehehe...exact same hostill try that out tonight...as a side note have you been experiencing some problems lately with responsiveness from the server...i dont know if u r on the same one as me (ZEUS) but I was just curious...ive noticed some "issues" as of later.. When You Compensate For A

[PHP] Pam Auth 0.2 released

2001-03-05 Thread Chad Cunningham
is version. -- Chad Cunningham [EMAIL PROTECTED] "Well, once again my friend, we find that science is a two-headed beast. One head is nice, it gives us aspirin and other modern conveniences,...but the other head of science is bad! Oh beware the other head of science, Arthur, it bites!" --

RE: [PHP] Interbase

2001-03-07 Thread Angerer, Chad
Both the binary and source distros are available on the website. I beleive Interbase has gone open source. http://www.borland.com/interbase/ Chad -Original Message- From: Chris [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 07, 2001 1:23 PM To: php Subject: [PHP] Interbase Hi

RE: [PHP] parsing html / xml

2001-03-07 Thread Angerer, Chad
Try here to take care of problems.. http://www.w3.org/People/Raggett/tidy/ Chad -Original Message- From: Nathaniel Hekman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 07, 2001 10:57 AM To: '[EMAIL PROTECTED]' Subject: [PHP] parsing html / xml I'd like to parse

[PHP] demo application suggestions

2001-03-08 Thread Chad Cunningham
dules available. If anyone has any suggestions on any php apps that would impress business types, please let me know. I might as well try and drum up some interest in PHP while I'm there :) -- Chad Cunningham [EMAIL PROTECTED] "Well, once again my friend, we find that science is a two-headed

RE: [PHP] Good Free PHP Editor?

2001-03-12 Thread Angerer, Chad
Yes I use it with NT and run into occasional memory management problems as well. It is a great editor but has small issues that really can annoy a person. Also the FTP engine blows. It can be most unpredictable. Chad -Original Message- From: Simon Garner [mailto:[EMAIL PROTECTED

RE: [PHP] update two frames at once?

2001-03-12 Thread Angerer, Chad
Yes you can.. use Javascript Look here.. http://www.virtualgeoff.com/junkyard/frames/multiple/ Chad -Original Message- From: Michael George [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 3:06 PM To: [EMAIL PROTECTED] Subject: [PHP] update two frames at once? Hello al! Is it

RE: [PHP] update two frames at once?

2001-03-12 Thread Angerer, Chad
By saying straight/plain html frames if you mean strictly HTML and no outside scripting language then you are right you cannot. But I don't think anyone is strictly limited to just HTML. Chad -Original Message- From: Tanya Brethour [mailto:[EMAIL PROTECTED]] Sent: Monday, Mar

RE: [PHP] tutorials on good database design

2001-03-14 Thread Angerer, Chad
Try a book called - Database Design For Mere Mortals by Michael J. Hernandez. This book does a wonderful job of explaining concepts and theory on good RDB design. It also goes through the SQL syntax. Chad -Original Message- From: Justin French [mailto:[EMAIL PROTECTED]] Sent: Tuesday

[PHP] PHP Webhosting

2001-03-19 Thread Angerer, Chad
d any experience. Any input is appreciated. Thanks. chad angerer html programmer .. :one man with a club is a hooligan. a thousand men with clubs are a regiment: .. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

RE: [PHP] off the topic but relevant with us

2001-03-20 Thread Angerer, Chad
Probably wherever you registered your domain name. Unless you have had it transferred somewhere. chad angerer html programmer .. :one man with a club is a hooligan. a thousand men with clubs are a regiment: .. -Original Message- From: Jacky [mailto:[EMAIL PROTECTED]] Sent: Tuesday

[PHP] Returning part of a string, ereg..

2001-04-17 Thread Chad Day
-", $f, $regs); but $part = ereg("([0-9]{1})-([0-9]{1,10})-", $f, $regs); will return the number, but I don't want to take a chance and limit it to 10 characters. I thought the first bit of code would work.. any ideas what is wrong? Thanks, Chad -- PHP General Mailing L

RE: [PHP] print and echo

2001-04-23 Thread Angerer, Chad
This has been answered several times I think check here http://www.faqts.com/knowledge_base/view.phtml/aid/1/fid/40 CAA -Original Message- From: Wade [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 10:43 AM To: [EMAIL PROTECTED] Subject: [PHP] print and echo What's the diffe

[PHP]PHP script and new window.

2001-04-23 Thread Angerer, Chad
I have searched high and low for thos but with no luck. Hopefully someone will give me some good pointers. I have a poll on a page that I am building which uses php. I would like to have a new window open when the submit and view results links are selected. I am using an onClick and the view re

RE: [PHP]PHP script and new window.

2001-04-24 Thread Angerer, Chad
d is being submitted? Lastly, view source on your HTML page and ensure all the fields are getting filled out like you expect them to. It happens all the time that by using View Source I find what my problem was. -- Plutarck Should be working on something... ...but f

[PHP] FTP problem..

2001-04-24 Thread Chad Day
echo "Remote File Successfully Saved as: $file"; } } } } chDir('c:\inetpub\wwwroot\php\xfer'); ftp_cdup($conn_id); closedir($handle); } Does anyone see the problem? Thanks! Chad --

RE: [PHP] PHP Book?

2001-04-27 Thread Angerer, Chad
Professional PHP by WROX. Great book. It provides you with some real world examples. Chad Angerer HTML Programmer Internet Broadcasting Systems 651.365.4006 -Original Message- From: Hamed Nik [mailto:[EMAIL PROTECTED]] Sent: Friday, April 27, 2001 8:10 AM To: [EMAIL PROTECTED

[PHP] Forms and PHP_SELF

2001-05-10 Thread Chad Guilette
cript... I'm really baffled...how can I have a self-submitting form page that has a display message and a meta redirect but if the user refreshes the page stop the resumission of data? Regards, Chad Guilette -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP] Compiling .. or Re-Compiling.

2001-05-17 Thread Angerer, Chad
running. Now I want to add gd support and a few other options to PHP. Can I just recompile PHP and it will continue to function as normal or would I have to start at the beginning with openssl and recompile everything along with PHP? Any help is appreciated. Thanks Chad -- PHP General

[PHP] help with header/cookies ..

2001-05-17 Thread Chad Day
check, fail it, but don't redirect me, and continue to allow me to search? What is wrong with my code? Is there something I'm missing about how I'm handling my headers/cookies? I have the check_cookie function working on several other parts of the site, but for some reason I can&

RE: [PHP] help with header/cookies ..

2001-05-17 Thread Chad Day
Sweet, thanks! Fixed it .. learn something new every day .. Chad -Original Message- From: Johnson, Kirk [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 17, 2001 12:19 PM To: Php-General@Lists. Php. Net Subject: RE: [PHP] help with header/cookies .. Add an exit(); immediately following

[PHP] compile with apxs

2001-05-17 Thread Angerer, Chad
erl httpd -l shows mod_so.c and apxs is pointing to the current path of my apache bin directory. I am not sure what else to try. Can someone help me out please. Thanks in advance. Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

RE: [PHP] Problems upgrading PHP..

2002-05-02 Thread Chad Day
php.ini didn't exist before apparently on this server I'm on.. or rather, it was a 0 byte file. Thanks, Rasmus. Chad -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 02, 2002 2:58 PM To: Chad Day Cc: [EMAIL PROTECTED] Subject: Re: [PHP

RE: [PHP] Problems upgrading PHP..

2002-05-02 Thread Chad Day
reads: './configure' '--with-mysql' '--with-apxs' but I know I did ./configure --with-mysql=/usr/local --with-apxs=/mypathtoapxs etc etc .. Still really confused.. Chad -----Original Message- From: Chad Day [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 02, 2002

[PHP] Mailing list software recommendation?

2002-05-23 Thread Chad Day
and I haven't really seen anything addressing the virtual domain issue.. I'm sure there's something out there, ISPs and such have to be using something, I just don't know what it is.. Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Session Variables

2002-03-25 Thread Chad Gilmer
??? Cheers Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem reading in and displaying an image...

2002-04-02 Thread Chad Day
fread($fd, 5024); fclose($fd); Header("Content-type: image/gif"); echo $image; exit(); now, if I comment out the Header and echo $image; lines, the script works fine, it reads in the file with no problem it seems. But when I turn those 2 lines back on, it totally hangs. does a

[PHP] php or perl bug when execing php scripts?

2001-10-21 Thread Chad Cunningham
uot; Is this a bug? Am I doing something wrong here? This should work... -- Chad Cunningham [EMAIL PROTECTED] "Well, once again my friend, we find that science is a two-headed beast. One head is nice, it gives us aspirin and other modern conveniences,...but the other head of science is bad

[PHP] Multi-dimensional nested arrays in Smarty

2001-10-26 Thread Chad Guilette
I've asked a few questions before on Smarty here and I've worked through them but this one really has me. I checked the Smarty lists for answers and couldn't find a clear answer. Here is my problem. i want to do something to this effect {section name=loop_index loop=$DATA_ARRAY} {$DATA

[PHP] Multi-dimensional nested arrays in Smarty

2001-10-27 Thread Chad Guilette
I've asked a few questions before on Smarty here and I've worked through them but this one really has me. I checked the Smarty lists for answers and couldn't find a clear answer. Here is my problem. i want to do something to this effect {section name=loop_index loop=$DATA_ARRAY} {$DATA

[PHP] Multi-dimensional nested arrays in Smarty

2001-10-27 Thread Chad Guilette
I've asked a few questions before on Smarty here and I've worked through them but this one really has me. I checked the Smarty lists for answers and couldn't find a clear answer. Here is my problem. i want to do something to this effect {section name=loop_index loop=$DATA_ARRAY} {$DATA_AR

[PHP] Including a URL for mailing..

2001-04-11 Thread Chad Day
me in the right direction on saving the contents of a page to a variable? I've ran across a few examples, but nothing has worked for me yet. :( Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAI

RE: [PHP] Including a URL for mailing..

2001-04-11 Thread Chad Day
Various things, but I finally hit upon something that worked. Thanks anyway. Chad -Original Message- From: Rodney J. Woodruff [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 11, 2001 5:03 PM To: Chad Day Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Including a URL for mailing.. What

[PHP] PHP / gd problems / compiling

2001-06-20 Thread Chad Day
would give me the same warnings for JPG .. No JPG support, no PNG support, etc.) What did I do wrong? I thought I built it in correctly, that configure line appears when I do the phpinfo() stuff .. Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP] problems with round ..

2001-06-26 Thread Chad Day
cision? Thanks, Chad -- 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]

RE: [PHP] problems with round ..

2001-06-27 Thread Chad Day
Yes, it is. I've tried it on a couple different php4 servers, I've never gotten it to work. Chad -Original Message- From: CC Zona [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 8:00 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] problems with round .. In artic

[PHP] addslashes problem ..

2001-07-06 Thread Chad Day
t just kinda merged all the strings together, no line breaks (or 's) at all. Thanks, Chad -- 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] string formatting help

2001-07-06 Thread Chad Day
I've tried replacing the br's with blank spaces or new line characters, but in the html code it still breaks on those breaks when I echo it back out. How can I force this string to be all on one line? Thanks, Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-ma

RE: [PHP] Re: string formatting help

2001-07-06 Thread Chad Day
PONSE]); $OVERLIBBED = str_replace(chr(13), "", $RESPONSE); $OVERLIBBED = str_replace(chr(10), "", $OVERLIBBED); is what worked for me .. Thanks all, Chad -Original Message- From: Steve Edberg [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 4:2

[PHP] Not sure how to describe this problem..

2001-07-10 Thread Chad Day
dated.. how can I go about controlling this? Thanks, Chad -- 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] GD help

2001-07-13 Thread Angerer, Chad
pctrd "; } On the page I get a broken image. If I view the source I see the image is being called with params. Any help would be appreciated. Thanks. Chad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: [PHP] auto link?

2001-07-16 Thread Chad Day
} else { $o .= '://'; } } else { $o .= $s; $s = ''; } } // while return $o; } Hope this helps, Chad -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 16, 1979 4:01 PM To: [EMAIL PR

  1   2   >