Re: [PHP] W2K SP2, PHP 4.2.1, IIS 5

2002-05-22 Thread Joshua E Minnie
gt; extension is setup as a CGI extension in IIS (pointing to php.exe). > > --Bruce "Joshua E Minnie" <[EMAIL PROTECTED]> wrote: > Hey all, > I have a problem, that I can't seem to find the answer to. I have > checked the archives and the website, but to no avail.

Re: [PHP] W2K SP2, PHP 4.2.1, IIS 5

2002-05-22 Thread Joshua E Minnie
, as from what you've > said everything seems to work individually, the pieces just haven't been > bound together. > > HTH, > Dw. > > Sqlcoders.com Dynamic data driven web solutions > - Original Message - > From: "Sqlcoders.com Programming Dept"

[PHP] Re: W2K SP2, PHP 4.2.1, IIS 5

2002-05-22 Thread Joshua E Minnie
I even tried adding the mime type for php (application/x-httpd-php). Argh. Thanks for all the help that you guys have provided thus far. -josh > Hey all, > I have a problem, that I can't seem to find the answer to. I have > checked the archives and the website, but to no avail. I have ins

[PHP] Re: [PHP-INST] W2K SP2, PHP 4.2.1, IIS 5

2002-05-23 Thread Joshua E Minnie
:\PHP\extensions\php_mssql.dll' - The specified module could not be found. in Unknown on line 0 What I don't understand about this error is that the php_mssql.ddl is in that exact directory. Any suggestions? - Original Message - From: "Paul Ellison" <[EMAIL PROTECTED]>

[PHP] undefined variable...working in PHP 4.1.2 not 4.2.1

2002-05-23 Thread Joshua E Minnie
Hey all, I am having a problem that maybe some of you have had as well. I am using a session and when I pass the session variable to the next page it comes back as undefined. Is there some new syntax in 4.2.1 that I am missing, I thought that I made all the necessary changes. Here is the en

[PHP] Arrays/OOP

2002-03-05 Thread Joshua E Minnie
se($fp); return $event_list; } P.S. Please CC it directly to me, as I will receive the reply faster that way. Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but always do work worthy of recognition."

Re: [PHP] Re: Arrays/OOP

2002-03-05 Thread Joshua E Minnie
Michael Kimsal wrote: > Joshua E Minnie wrote: > > > > > while(!feof($fp)) { > > $temp = fgetcsv($fp, 1024, ":"); > > $event_list[$i] = $event_object->init($temp[0],$temp[1],$temp[2],$temp[3],$temp[4],$temp[5],$t emp[6],$temp[7],$temp[8]); >

Re: [PHP] Re: Arrays/OOP

2002-03-05 Thread Joshua E Minnie
have attached the code. Joshua E Minnie CIO [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Arrays/OOP

2002-03-05 Thread Joshua E Minnie
Michael Kimsal wrote: > Still works - at least, I'm not getting the error you posted. Is there > something else we may be missing? What line(s) are causing a problem? > On line 21 of the corrected test file that I attached previously. Joshua E Minnie [EMAIL PROTECTED] -

[PHP] Arrays/OOP

2002-03-06 Thread Joshua E Minnie
This is for anyone who was following this post, I found a work-around for the problem I was having with my array of objects. The original code looked like this: function getEvents($filename) { //string $filename $event_list = array(); $event_object = new event(); $i = 0; @ $fp = fopen($

[PHP] require v. includes

2002-03-07 Thread Joshua E Minnie
I was just wondering if anyone could tell me when would be the time to choose require(), require_once(), or include(). I know a little bit about using each one, but I am just not sure if there is one that is better than the other in certain situations. -- Joshua E Minnie CIO [EMAIL PROTECTED

[PHP] Re: require v. includes

2002-03-07 Thread Joshua E Minnie
Thanks for the information, was definitely very helpful in clearing up that question. Joshua E Minnie [EMAIL PROTECTED] "Don't work for recognition, but always do work worthy of recognition." ~ Unknown "Michael Kimsal" <[EMAIL PROTECTED]> wrote in message

[PHP] Arrays/OOP again

2002-03-07 Thread Joshua E Minnie
$morning) && (current($retrieved)->beginTime < $night)) -- Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but always do work worthy of recognition." -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] problem with getdate()

2002-03-11 Thread Joshua E Minnie
uot;\$year = $year\n"; echo date("F jS, Y g:i a",$update); With this code the output is as follows, but I don't see why it is not giving me the $day: $hours = 10 $minutes = 27 $month = 3 $day = $year = 2002 February 28th, 2002 10:27 am You can see the code run from my server at

[PHP] Re: help with date formatting

2002-03-18 Thread Joshua E Minnie
ence in New York next week. > ---- If you are using the mktime() to make a UNIX timestamp you could do something like this: -- Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but always do work worthy of recognition." -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Accessing form variables

2002-03-20 Thread Joshua E Minnie
I have a form with a menu which I need multiple select on. How does PHP handle this? I have to use $HTTP_POST_VARS["somevariable"] to access somevariable from the form. -- Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but always do work worthy of reco

[PHP] Sessions

2002-03-20 Thread Joshua E Minnie
/default.php on line 10 Here is the code that is causing the problem. -- Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but always do work worthy of recognition." -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] sessions

2002-03-20 Thread Joshua E Minnie
) in /home/www/wildwebtech/cumc/default.php on line 10 This is the only code on that particular page, I just want to make sure that when they leave the site via my links that the session is destroyed. -- Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but always do w

[PHP] T_STRING, T_VARIABLE, and T_NUM_STRING

2002-03-21 Thread Joshua E Minnie
I keep getting the following error message and I am just wondering what T_STRING, T_VARIABLE, and T_NUM_STRING mean. Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in /home/www/process.php on line 20 -- Joshua E Minnie CIO [EMAIL PROTECTED]

[PHP] $HTTP_POST_VARS

2002-03-21 Thread Joshua E Minnie
] throw errors. Any suggestions would be greatly appreciated. -- Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but always do work worthy of recognition." -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Rollover not functioning

2002-03-22 Thread Joshua E Minnie
t;From: ".$HTTP_POST_VARS["email"]."\n"; mail($to,$subject,$body,$headers); @ $fp = fopen($filename, "r"); if(!$fp) { echo "Error: could not open $filename for reading\n"; exit; } $form = fread($fp, filesize($filename)); fclose($fp);

[PHP] Browser detection

2002-04-03 Thread Joshua E Minnie
. vbscript. javascript...1 javaapplets..1 activexcontrols.. beta.1 I am using IE 6.0 running PHP 4.1.2 binary for Windows. -- Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but always do work

[PHP] MCAL for Windows

2002-04-03 Thread Joshua E Minnie
Does anybody know where I can find MCAL for Windows? -- Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but always do work worthy of recognition." -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Explode and Trim

2002-04-04 Thread Joshua E Minnie
[7]) && $stores[$i][7] != "") echo "Additional notes: ".$stores[$i][7]."\n"; echo ""; } } ---End of code snippit--- Here is the URL of where the code is being used: www.wildwebtech.com/acs/nuven/stores.php. The additional notes should only

Re: [PHP] Explode and Trim

2002-04-05 Thread Joshua E Minnie
Unfortunately it doesn't. That is why I am kind of puzzled by the situation. -- Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but always do work worthy of recognition." "Maxim Maletsky" <[EMAIL PROTECTED]> wrote > > I think wh

Re: [PHP] Explode and Trim

2002-04-05 Thread Joshua E Minnie
It works great using the foreach statements, but for some reason couldn't make it work the other way. Oh well, no one ever said there was only one way to do things when programming. Thanks for your help. --- Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but

[PHP] Having problems deleting an element from an array

2002-04-05 Thread Joshua E Minnie
] = explode(":", $data) as $key => $val) { $stores[$i][$key] = trim($val); } $i++; } $fp = @ fopen($storelist, "w") or die("Fatal Error: could not open $storelist for edit\n"); foreach($HTTP_POST_VARS as $key => $val) { unset($stores[$val]); }

[PHP] Array elements missing

2002-04-08 Thread Joshua E Minnie
=> Yet Another City [4] => (123) 283-4839 [5] => (123) 458-4843 [6] => [7] => [8] => ) ) Array ( [chk5] => 5 [Submit] => Delete Store(s) ) The script deletes the element that was requested delet

Re: [PHP] Array elements missing

2002-04-09 Thread Joshua E Minnie
Thanks for the suggestion. I did get it to work prior to your posting, but this does help slim up my code quite a bit. -- Joshua E Minnie CIO [EMAIL PROTECTED] "Don't work for recognition, but always do work worthy of recognition." "Jason Wong" <[EMAIL PROTECTED]&

Re: [PHP] Using Post like Get

2004-08-13 Thread Joshua D. Drake
quot; App "b" recognizes the name of the cookie and checks the value against the session table. If true -- User foo: is recognized but requested to log in When User foo logs in, the auth table is updated to reflect that they are not authenticated against a different part of the si

Re: [PHP] Users of RDBMS

2004-09-08 Thread Joshua D. Drake
> PHP != MySQL MySQL != RDBMS http://www.postgresql.org > > http://dev.mysql.com/doc/mysql/en/index.html > > ---John Holmes... > > -- Co-Founder Command Prompt, Inc. The wheel's spinning but the hamster's dead -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] temp tables

2005-04-27 Thread Joshua D. Drake
connection (script in this case). You will probably want to consider that. Sincerely, Joshua D. Drake i tried the following: $sql = "create temp table s_info(a int, b text) on commit delete rows "; pg_query($dbh,$sql); $dbh is my connection. any help will be highly appreciated. -- Your

Re: [PHP] Looking for good Mail List Manager

2004-04-14 Thread Joshua D. Drake
Mailman James Marcinek wrote: Can any of you guys recommend a good Mail List Manager? I see several on sourceforge but would like to hear from people that have some experience with these... Thanks, James __ Do you Yahoo!? Yahoo! Tax Center -

Re: [PHP] Checking if database has been setup

2004-02-06 Thread Joshua D. Drake
> if its setup or not. I can handle the setup in steps (the "setup wizard") > but how do i check if the database/tables have > been setup? > It may be helpful to know which database as each database has there own way... > (and my apoligies for using "setup" so many times :-p ) > > Any advise,

Re: [PHP] excel output question

2004-02-06 Thread Joshua D. Drake
On Sat, 7 Feb 2004, Jake McHenry wrote: > Hi everyone. I'm outputing payroll information to an excel csv file, and when anyone > get's paid over 1k, the amount is split into two fields because of the comma in the > amount. Is there anyway I can tell excel that this particular comma is not a > d

Re: [PHP] validate international phone numbers

2004-11-02 Thread Joshua D. Drake
ou process. Sincerely, Joshua D. Drake Thanx for any help, Merlin -- Command Prompt, Inc., home of Mammoth PostgreSQL - S/ODBC and S/JDBC Postgresql support, programming shared hosting and dedicated hosting. +1-503-667-4564 - [EMAIL PROTECTED] - http://www.commandprompt.com PostgreSQL Replicator --

Re: [PHP] Re: GUI editor for php?

2004-11-02 Thread Joshua D. Drake
Vail, Warren wrote: I like htmlkit; (it's free) http://www.chami.com/html-kit/ Emacs, Quanta, Kate??? Warren Vail -Original Message- From: Eric Bolikowski [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 2:25 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: GUI editor for php? "An

Re: [PHP] Install PHP4 on a Apache2 + PHP5 system

2004-12-20 Thread Joshua D. Drake
Rens Admiraal wrote: Hi guys, I have a server on which Apache2 and PHP5 are functioning well, but I also want to build in support for PHP4 because the webmail package I use isn't compatible with PHP5... So, I need to install PHP4 next to PHP5, and make my in httpd.include use PHP4 for my webmai

Re: [PHP] PHP CMS

2005-08-26 Thread Joshua D. Drake
Joseph Oaks wrote: Guys I'm doing some research trying to find a good PHP based CMS. As there a quite a few, I would really like to get your opinions so I can narrow the search down. If you don't mind non-opensource but php based you could take a look at: http://www.commandprompt.com/produc

<    1   2   3   4