RE: [PHP] Can a script run twice?

2006-05-23 Thread Chris Kay
Futher to this... I found thatit does not do it with all my scripts... well as far as I am aware... how much is IE7 stuffing up I have NFI CK > -Original Message- > From: Stut [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 23 May 2006 10:06 PM > To: Lester Caine > Cc: PHP List > Subject: Re

RE: [PHP] Can a script run twice?

2006-05-23 Thread Chris Kay
OK I found this out last week... if its not a coding error... its this.. There is a bug with IE7, I have some billing scripts for a large Sydney ISP and I was working on a script on my laptop which I recently updated to IE7... after tipping my hair out for a few hours cause I was certain it was n

Re: [PHP] Technology Forums

2005-06-30 Thread Chris Kay
Considering it dont even have 1 post... spam it is.. :P And yes i am getting a heap of spam recently... can someone do something about this.. :P CK On Fri, 2005-07-01 at 02:45 -0400, Robert Cummings wrote: > On Fri, 2005-07-01 at 02:20, anshul wrote: > > Hi all, > > > > We've our new Technolog

Re: [PHP] How to unset a post variable

2005-04-18 Thread Chris Kay
unset($_POST['buttonNew']); wont work? CK On Mon, Apr 18, 2005 at 08:25:04PM -0700, Richard Lynch wrote: > On Fri, April 15, 2005 5:08 am, Mario de Frutos Dieguez said: > > I have another little question hehe :D, i have a page with a form where > > the user insert data and can click in a new,edi

Re: [PHP] stripping of the last character

2005-04-18 Thread Chris Kay
use substr($recipients,0,1); to remove the last char and ereg_replace(","," ,",$recipients); to add the spaces Hope this helps CK On Mon, Apr 18, 2005 at 12:05:42PM +0100, Ross wrote: > I have a large group of email addesses serperated by commas. I need to trim > off the very last comma > >

RE: [PHP] dirty words

2004-10-16 Thread Chris Kay
in_array() can check your $string against a array and return if a bad word is in string Is this what you are after? Chris Kay (CK) [EMAIL PROTECTED] -Original Message- From: Mag [mailto:[EMAIL PROTECTED] Sent: Sunday, 17 October 2004 12:41 AM To: php php Subject: [PHP] dirty words

RE: [PHP] Please help me as fast as possible.. very important!!

2004-01-20 Thread Chris Kay
http://www.unixgeeks.org/security/newbie/unix/cron-1.html Chris Kay (CK) Eleet Internet Services M: 0415 451 372 P: 02 4620 5076 F: 02 4620 7008 E: [EMAIL PROTECTED] -Original Message- From: Radwan Aladdin [mailto:[EMAIL PROTECTED] Sent: Tuesday, 20 January 2004 9:05 PM To: Nick

RE: [PHP] Whats more efficient? (Conclusion)

2003-10-21 Thread Chris Kay
-- Chris Kay (CK) Eleet Internet Services M: 0415 451 372 P: 02 4620 5076 F: 02 4620 7008 E: [EMAIL PROTECTED] -Original Message- From: Ryan A [mailto:[EMAIL PROTECTED] Sent: Wednesday, 22 October 2003 1:28 PM To: Chris Shiflett Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Whats more efficient

RE: [PHP] storing the passthru() output as an array

2003-10-06 Thread Chris Kay
// Yadda Yadda } Hope this helps... -- Chris Kay (CK) Eleet Internet Services M: 0415 451 372 P: 02 4620 5076 F: 02 4620 7008 E: [EMAIL PROTECTED] -Original Message- From: Michael P. Carel [mailto:[EMAIL PROTECTED] Sent: Tuesday, 7 October 2003 11:41 AM To: [EMAIL PROTECTED] Subject

RE: [PHP] undefined variable

2003-08-29 Thread Chris Kay
x27;] . "\n\n"; $mailheaders = "From: yoyo.monash.edu.my\~nthonyak\M\n"; $mailheaders .="Reply-To: " . $_POST['sender_email'] . "\n\n"; mail("[EMAIL PROTECTED]", "Feedback Form", $msg, $mailheaders); -- Chris Kay (CK) Eleet Internet

RE: [PHP] PHP5?

2003-07-23 Thread Chris Kay
I have got PHP5 to work with apache 2.0.47 on both windows and linux -- Chris Kay (CK) Eleet Internet Services P: 0415 451 372 F: 02 4620 5076 E: [EMAIL PROTECTED] -Original Message- From: Jonathan Villa [mailto:[EMAIL PROTECTED] Sent: Thursday, 24 July 2003 4:03 AM To: [EMAIL

RE: [PHP] Problem with MySQL Query

2003-07-23 Thread Chris Kay
from your original query you are closing off the line at day=" which could be a reason for it not completing Hope this helps -- Chris Kay (CK) Eleet Internet Services P: 0415 451 372 F: 02 4620 5076 E: [EMAIL PROTECTED] -Original Message- From: Phillip Blancher [mailto:[EMA

RE: [PHP] passwd protected page

2003-06-26 Thread Chris Kay
ARGGG bad day for coding & reading Replace if ( mysql_num_rows($db) ) { with if ( mysql_num_rows($db)==1 ) { now I am going home before I cause any more damage :) ----- Chris Kay Techex Communications Website: www.techex.co

RE: [PHP] passwd protected page

2003-06-26 Thread Chris Kay
{ header("Location: error.php?error=invalid"); } } else { header("Location: error.php?error=noset"); } Try this it will work - Chris Kay Techex Communications Website: www.teche

RE: [PHP] passwd protected page

2003-06-26 Thread Chris Kay
Why not use sessions, store a $loggedin value in a session or cookie And check that at the top of each page.. no session = no access Hope this helps - Chris Kay Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED

RE: [PHP] check is pop address

2003-06-11 Thread Chris Kay
You can now pop hotmail accounts as well, not to mention most email providers have web based systems for their customers to read/send mail. - Chris Kay Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone

RE: [PHP] Add a record and recover it's ID in one operation

2003-02-13 Thread Chris Kay
uery); // Gets record ID $dbq=mysql_query("select last_insert_id()"); $data=mysql_fetch_row($dbq); // Return ID return $data[0]; } --------- Chris Kay Techex Communications Website: www

RE: [PHP] appending file with new line first

2003-02-09 Thread Chris Kay
fwrite($handle, $new_info\r); as quoted above would indicate $new_info\n as been a variable.. try $new_info .= "\n"; fwrite($handle, $new_info); this will add \n to the end of the string before you write it... hope this helps --

[PHP] Printing

2003-02-09 Thread Chris Kay
If anyone has got PHP to print to a remote printer please Could you direct me to some examples or anything that would help me understand this a bit more . Thanks in advance - Chris Kay Techex Communications Website

[PHP] FW: Printing

2003-02-05 Thread Chris Kay
Anyone know if a LaserJet 3150 would be a good choice to print remotely? -Original Message- From: Chris Kay Sent: Wednesday, 5 February 2003 3:09 PM To: [EMAIL PROTECTED] Subject: Printing I am thinking of running a print job from one system via the internet to a network printer

[PHP] Printing

2003-02-04 Thread Chris Kay
printer with php on a RH 8.0 box Thank you in advance - Chris Kay (Systems Development) Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: 1300 882 221

[PHP] Sorting arrays

2003-01-11 Thread Chris Kay
anual but cant see anything.. Thanks in advance Regards Chris Kay -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] can I mail unlimited in one click?

2002-12-16 Thread Chris Kay
I am emailing 150 or so - Chris Kay (Systems Development) Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: (02) 9970 5788

[PHP] Radiator && PHP

2002-11-04 Thread Chris Kay
. - Chris Kay (Systems Development) Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: (02) 9970 5788 - -- PHP General Mailing List (http://www.php.net/) To unsubscribe

RE: [PHP] Add content thru e-mail

2002-11-04 Thread Chris Kay
Could you not put a .forward to a php script? Correct me if I am wrong or even point me in the right direction Cause I am thinking of doing this soon. Regards Chris Kay > -Original Message- > From: Timothy Hitchens (HiTCHO) [mailto:phplists@;hitcho.com.au] > Sent:

RE: [PHP] Re: Session cookies

2002-11-04 Thread Chris Kay
I don't use cookies when I use sessions.. Saves hassles Regards Chris Kay > -Original Message- > From: Erwin [mailto:erwin@;isiz.com] > Sent: Monday, 4 November 2002 6:50 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Re: Session cookies > > > >

RE: [PHP] stupid me!!

2002-10-30 Thread Chris Kay
Below you force state to equal NSW, QLD, NT I think what you are after is "OR" not "AND" || = or && = and --------- Chris Kay (Systems Development) Techex Communications Website: www.techex.com.au Email: [EMAIL PROTE

RE: [PHP] Find rows by 1st letter in MySQL

2002-08-18 Thread Chris Kay
Try Select blah from blah where blah like '$letter%' % is wildcard after first letter Regards. ------- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED]

RE: [PHP] records in db

2002-08-11 Thread Chris Kay
// untested $data = mysql_fetch_array(mysql_query("SELECT count(answer_col) as total FROM answers_table WHERE answer_col='{$answer}'")); echo $data[total]; Put this in a while/foreach statement Regards Chris Kay > -Original Message- > From: Ju

[PHP] Cache issue

2002-07-31 Thread Chris Kay
in advance --- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: (02) 9970 5788 Address: Suite 13, 5 Vuko Place, Warriewood, NSW 2102

RE: [PHP] Using index.php instead of index.html

2002-07-16 Thread Chris Kay
Why not just add it to the httpd.conf, this would allow it to work within the whole server And not just one director / vhost ect --- Chris Kay Technical Support - Techex Communications Website

[PHP] Training / Courses in Australia

2002-07-14 Thread Chris Kay
--- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: (02) 9970 5788 Address: Suite 13, 5 Vuko Place, Warriewood, NSW 2102 Platinum Channel Partner of the Year - Request DSL - Broadband for Business

[PHP] Question 1

2002-07-14 Thread Chris Kay
.. --- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: (02) 9970 5788 Address: Suite 13, 5 Vuko Place, Warriewood, NSW 2102 Platinum Channel Partner of the Year

RE: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread Chris Kay
Have you tried $_SERVER["HTTP_USER_AGENT"] ------- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: (02) 9970 5788 Address: S

RE: [PHP] Development Tools

2002-07-10 Thread Chris Kay
I don't know about anyone else, But in linux I use vi and as of yesterday I downloaded Vi for windows, it has great colours for coding... --- Chris Kay Technical Support - Techex Communications Website: www.techex.c

RE: [PHP] varible in url question

2002-07-10 Thread Chris Kay
Php4? or 3? Have you tried $_GET["sort"] ------- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: (02) 9970 5788 Address: S

[PHP] Stripslashes help

2002-07-08 Thread Chris Kay
"; In the form I typed This is a "test" this is a 'test' And what I got in the email was This is a "test" this is a Has anyone a few pointers as to what I am missing... Regards in advance ---

RE: [PHP] Printing Problem

2002-07-07 Thread Chris Kay
ut my email. Sorry if I upset anyone. --- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: (02) 9970 5788 Address: Suite 13, 5 Vuko

[PHP] Printing Problem

2002-07-07 Thread Chris Kay
is done in php and NOT javascript 2. My question is regarding php and pausing the loop and not with the javascript code) ---- --- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL

RE: [PHP] Printing

2002-06-30 Thread Chris Kay
You saying there is a way for the scripts to know what kind of browser u r using? --- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax

[PHP] Printing

2002-06-30 Thread Chris Kay
vance.. --- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: (02) 9970 5788 Address: Suite 13, 5 Vuko Place, Warriewood, NSW 2102 Platinum Channel Partner of the Year - Request DSL - Broadban

[PHP] Start / Stop

2002-06-24 Thread Chris Kay
Anyone have some tips on the best way to make a Script started @ 5:45pm Script ended @ 5:50pm Script? --- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED

RE: [PHP] MySQL Query Help!!!!

2002-06-13 Thread Chris Kay
the ones most often to find flaws in someones code, are the ones who never provide Answers. ----------- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - F

[PHP] MySQL Query Help!!!!

2002-06-13 Thread Chris Kay
t day Detail_start_time_h = 24 hour time Can anyone see what I am doing wrong? Thanks in advance. --- Chris Kay Technical Support - Techex Communications Website: www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: (02) 9970 5788 Address

[PHP] Mysql Query Help needed

2002-05-16 Thread Chris Kay
\n"; while( $data = mysql_fetch_array($dbq) ) { if($data[cust_fnn]==$sel) $html.="$data[cust_name] : $data[cust_fnn]\n"; else $html.="$data[cust_name]: $data[cust_fnn]\n"; }

RE: [PHP] /usr/bin/php Question

2002-04-07 Thread Chris Kay
Thanks Jason this worked.. --- Chris Kay, Eleet Internet Services [EMAIL PROTECTED] --- -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED]] Sent: Monday, 8 April 2002 4:01 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] /usr/bin/php Question On Sunday 07 April 2002

RE: [PHP] WebMail server question

2002-04-07 Thread Chris Kay
Not sure which one you are referring to but I been told SquirrelMail is really good http://sourceforge.net/projects/squirrelmail/ --- Chris Kay, Eleet Internet Services [EMAIL PROTECTED] --- -Original Message- From: Patrick Ni [mailto:[EMAIL PROTECTED]] Sent: Sunday, 7 April

[PHP] /usr/bin/php error

2002-04-07 Thread Chris Kay
--- Chris Kay, Eleet Internet Services [EMAIL PROTECTED] --- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] /usr/bin/php Question

2002-04-07 Thread Chris Kay
So I should compile without axps to make the binary then recompile --with-axps to compile the apache module again.? Cause I want both apache module and command line. Or will it work as a apache module without axps? --- Chris Kay, Eleet Internet Services [EMAIL PROTECTED

[PHP] /usr/bin/php Question

2002-04-06 Thread Chris Kay
e any idea's what's the best way to go about this would be... --- Chris Kay, Eleet Internet Services [EMAIL PROTECTED] --- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Php.ini

2002-03-30 Thread Chris Kay
things like session auto start ect Just a thought that it would make it easier. Thanks in advance. --- Chris Kay, Eleet Internet Services [EMAIL PROTECTED] --- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Session and SID

2002-03-19 Thread Chris Kay
click on a link and goto the page the SID is no longer attached to further links... Am I doing something wrong.. If so could some one shed some light for me.. --- Chris Kay, Eleet Internet Services [EMAIL PROTECTED] --- -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Sessions / MySQL

2002-03-11 Thread Chris Kay
... --- Chris Kay, Eleet Internet Services [EMAIL PROTECTED] --- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Writing to files

2002-02-27 Thread Chris Kay
you run the box or the webserver is run as that user. Sessions and such need configurations that need to be configured by the server admin Ect I was hoping there was a way that didn't rely on a special configuration And stayed in the users directory --- Chris Kay, Eleet Internet Ser

RE: [PHP] Writing to files

2002-02-26 Thread Chris Kay
The data will be stored in mysql, but I don't wish to store in sql untill its completed. In case a user leave the application before completing it. --- Chris Kay, Eleet Internet Services [EMAIL PROTECTED] --- -Original Message- From: Warren Vail [mailto:[EMAIL PROT

[PHP] Writing to files

2002-02-26 Thread Chris Kay
the above any one have a better soluition? Running php 4.1.1 on RH7.2 ------- Chris Kay, Eleet Internet Services [EMAIL PROTECTED] --- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Control Panel

2002-01-27 Thread Chris Kay
e built script(s) is not going to be good for you, Because the best would have all features you need and more and something out there is not made for you alone. Building it would be your best choice... Regards Chris Kay -Original Message- From: Miles Thompson [mailto:[EMAIL PROTECTED

RE: [PHP] Re: auto form submit

2001-11-20 Thread Chris Kay
How about storing it in a db or a file and retrieve it from the 2nd php script.. Chris Kay - Tech Support - IDEAL Internet email: [EMAIL PROTECTED] phone: +61 2 4628 fax: +61 2 4628 8890

[PHP] Question....

2001-11-12 Thread Chris Kay
able to point me in the right direction -------- Chris Kay - Tech Support - IDEAL Internet email: [EMAIL PROTECTED] phone: +61 2 4628 fax: +61 2 4628 8890 -- PHP Gener

RE: [PHP] how to echo data in a textarea

2001-11-08 Thread Chris Kay
Scott try this is standard html, you will find this out even if you open Wintendo Frontpage really you should be able to write html before learning php Regards Chris Kay - Tech Support - IDEAL Internet

[PHP] Question about sessions

2001-08-13 Thread Chris Kay
delete them selves.? Maybe someone has come accross this before and fixed it? Chris Kay - Tech Support - IDEAL Internet email: [EMAIL PROTECTED] phone: +61 2 4628 fax: +61 2 4628 8890

Re: [PHP] htaccess & php

2001-08-08 Thread Chris Kay
ok Thanks dude i'll start there At 10:01 AM 8/9/01 +1000, Daniel James wrote: >You are looking for HTTP Authentication... >http://www.php.net/manual/en/features.http-auth.php > >Twigman... > >On 2001.08.09 09:49 Chris Kay wrote: > > > > Hi > > &g

[PHP] htaccess & php

2001-08-08 Thread Chris Kay
make it use something that look like htaccess but is not. is this true? if so where would i start looking for something along these lines.. Answers/Comments welcome Chris Kay - Tech Support - IDEAL

Re: [PHP] easy mysql question

2001-07-08 Thread Chris Kay
mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED] -------- Chris Kay - Tech Support - IDEAL Internet email: [EMAIL PROTECT

Re: [PHP] BUGS.PHP.NET

2001-06-22 Thread Chris Kay
CTED] Chris Kay - Tech Support - IDEAL Internet    email: [EMAIL PROTECTED] phone: +61 2 4628 fax: +61 2 4628 8890