[PHP] Trim an array?

2001-02-02 Thread Thomas Deliduka
nt($tblcol)) { But that doesn't work since it always has 9 elements. Is there a way to find out if an array contains no values even though it has elements? Sort of like a trim() function on an array to destroy the elements in the array that are empty. Is it possible? -- Thomas Deliduka

[PHP] The coolest function in the world

2001-03-07 Thread Thomas Deliduka
I knew PHP was awesome, and I have seen some awesome functions. I've been doing PHP for a few years now and I didn't even know this existed: extract(): http://www.php.net/manual/en/function.extract.php This is SO COOL. I just had to share my joy. -- Thomas Deliduka IT Manager

Re: [PHP] payment

2001-03-09 Thread Thomas Deliduka
on any platform, anyone ever use it? Never used it. I use authorize.net or any of their resellers (rtware.net, quickcommerce.com) -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List

Re: [PHP] payment

2001-03-09 Thread Thomas Deliduka
; didn't want his stuff going down while he was gone. Now I'm hearing they're gone and we have to find other arrangements? -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http

Re: [PHP] Kick one of these darn elements out of my array, I ainthaving it!

2001-03-12 Thread Thomas Deliduka
= current($array)) { if ($elem != "2") { $temparray[] = $elem } next($array); } $array = $temparray; -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.

[PHP] OT Regular Expression [grep]

2001-04-03 Thread Thomas Deliduka
the PID's? How can I do this quickly and easily? -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] OT Regular Expression [grep]

2001-04-03 Thread Thomas Deliduka
system / backtick operator / ... to get the output of the grep call as array, one line per entry (2) do a foreach ($TheOutput as $Line) { if (preg_match ('/^\s*(\d+)/', $Line, $Matches)) { $PID = $Matches [1]; // kill it } } -- Thomas Deliduka IT Manager

[PHP] Reliability of sessions

2002-04-04 Thread Thomas Deliduka
info in the database and merely pass the order number that is assigned to them. What is the opinion, are sessions reliable enough to go through the step process? -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com

Re: [PHP] Reliability of sessions

2002-04-04 Thread Thomas Deliduka
or not cookies are set, the session stays intact. I'm thinking that I solved my old problem and I'm going to do it in the database and pass the order number. That's probably the best way. I only have to provide for order clean-up for those that started the process and decided not to check out. -- Thomas

Re: [PHP] Reliability of sessions

2002-04-04 Thread Thomas Deliduka
make a URL link in my site I do A HREF=filename.php?? echo sessinfo(); ?my link/A Of course, the sessfield function is for passing the session ID via a form. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com

Re: [PHP] Reliability of sessions

2002-04-04 Thread Thomas Deliduka
through the url every single time. There is absolutely no reason to use those functions since php takes care of that stuff for you. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List

[PHP] num2string wish list

2001-09-22 Thread Thomas Deliduka
I don't know if this exists already, I'm looking for it but I'm not coming up with much of anything. Basically, a function to take a number and convert it to a string: 1 converts to one 365 converts to three hundred sixty-five This would be awesome for me. -- Thomas Deliduka IT Manager

[PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
. I have been told this is all setup correctly, yet, you can see it doesn't work. The permissions on my /tmp directory look like this: drwxrwxrwt /tmp Does this have anything to do with this? I don't know much about the permissions part of things. -- Thomas Deliduka IT Manager

Re: [PHP] Sessions just don't work on my machine. (Trying thisagain)

2001-09-24 Thread Thomas Deliduka
them. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

Re: [PHP] Sessions just don't work on my machine. (Trying thisagain)

2001-09-24 Thread Thomas Deliduka
the links and forms and it works for me. Hope that helps or is at least something new for you to try. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net

Re: [PHP] Sessions just don't work on my machine. (Trying thisagain)

2001-09-24 Thread Thomas Deliduka
and demonstrated on php.net -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [PHP] Sessions just don't work on my machine. (Trying thisagain)

2001-09-24 Thread Thomas Deliduka
On 9/24/2001 12:22 PM this was written: Try to use constant SID, maybe that will work, and it is more likely that it will work on other intallations with other session variable names. I just tried using SID in my index.php and there is nothing that displays. Hmmm. -- Thomas Deliduka

Re: [PHP] Sessions just don't work on my machine. (Trying thisagain)

2001-09-24 Thread Thomas Deliduka
On 9/24/2001 12:28 PM this was written: On Monday 24 September 2001 18:20, Thomas Deliduka wrote: On 9/24/2001 12:22 PM this was written: Try to use constant SID, maybe that will work, and it is more likely that it will work on other intallations with other session variable names. I just

Re: [PHP] Sessions just don't work on my machine. (Trying thisagain)

2001-09-24 Thread Thomas Deliduka
After reloading IE on the PC now the SID constant doesn't echo anything at all. On 9/24/2001 12:28 PM this was written: On 9/24/2001 12:28 PM this was written: On Monday 24 September 2001 18:20, Thomas Deliduka wrote: On 9/24/2001 12:22 PM this was written: Try to use constant SID, maybe

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
-- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- 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

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
depending on SID to display on pages to pass the session ID. Or what, disable cookie support in my php.ini? -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
the querystrings, has that been fixed? -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
On 9/24/2001 12:39 PM this was written: Try these changes: session.cookie_lifetime = 0 session.use_trans_sid = 1 I see no changes to my problems. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
I'm finding my script on www.fromtheduke.com/session/ still doesn't work even with the ?=SID? in the link or passing it along in the form. On 9/24/2001 12:49 PM this was written: On Monday 24 September 2001 18:39, Thomas Deliduka wrote: On 9/24/2001 12:32 PM this was written: After reloading

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
On 9/24/2001 1:05 PM this was written: On Monday 24 September 2001 18:51, Thomas Deliduka wrote: I'm finding my script on www.fromtheduke.com/session/ still doesn't work even with the ?=SID? in the link or passing it along in the form. Please send us your latest code again, then we can help

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
.php??=SID?Try this link/A /BODY /HTML -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
, but the pros on this list say that is the way it needs to be done. Done, I switched the four lines around. Same result. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
but that sessid number is equal t the new session created on the server and the value of it is: var3; var1; var2 This is stranger than strange. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
that's what I've found, but I have to go home now sorry. On the other hand the 2 source file you've sent me worked fine on my computer, without any problems (and warnings). -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Thomas Deliduka
; -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

Re: [PHP] Re: popup window under php

2001-10-04 Thread Thomas Deliduka
. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

Re: [PHP] Classified Ad system (was: MySQL vs Flat File)

2001-10-17 Thread Thomas Deliduka
On 10/17/2001 6:11 PM this was written: Thomas Deliduka wrote: On a related note, does anyone here know of a GOOD program in PHP to do classified ads? I just picked up November 2001 Web Techniques today and it has an article you can check out for a classified ad system. I haven't played

Re: [PHP] getting data from form...

2001-10-18 Thread Thomas Deliduka
=checkbox name=XYZ value=10.25 input type=checkbox name=CHIPs value=5.25 and how to make it that form.php3 will read all the data that was submitted (i'm mean the name and the value) -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http

Re: [PHP] Looking for a text editor for Mac

2001-10-25 Thread Thomas Deliduka
://www.hekkelman.com/pepper.html It also can be used in conjunction with other programming applications (as I think BBEdit, not sure) like Code Warrier. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing

Re: [PHP] Searchengine friendly URLs

2001-10-26 Thread Thomas Deliduka
the following article: http://www.zend.com/zend/spotlight/searchengine.php -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP] Zend Optimizer Gui?

2001-12-11 Thread Thomas Deliduka
I am looking at the documentation for the zend optimizer and I see nothing about this (perhaps not looking hard enough?) The installation had me set a password for the Optimizer gui Interface. What is this? How can I get to it? -- Thomas Deliduka IT Manager - New

Re: [PHP] Re: PHP 4.1.0 released

2001-12-11 Thread Thomas Deliduka
On 12/11/2001 4:22 PM this was written: Yeah, and waiting till Zend is bringing out a working version of Optimizer for that PHP version ! :) It's out Version 1.2.0 -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http

[PHP] Looking for Portal/Directory code

2001-08-01 Thread Thomas Deliduka
I've been looking in several places and can't find a good PHP code resource site. The ones I have found have stuff that isn't very good. Anyway, I'm looking for a PHP app with MySQL back-end that will do a Portal/directory listing like Yahoo or the Open Directory Project. -- Thomas Deliduka

[PHP] YA Session Problem

2001-08-01 Thread Thomas Deliduka
sess_777 Contained in sess_777 is my second variable. Is this too abstract? Do I need to give code? I even do session_name($PHPSESSID); before session_start() and get the same results. 8 months ago, nobody had an answer for me. Does anyone now? -- Thomas Deliduka IT Manager

Re: [PHP] Display the weather on my site

2001-08-06 Thread Thomas Deliduka
On 8/6/2001 2:38 PM this was written: Put a webcam in your window. Put the city names in a database. Rotate through the city names randomly. They will be None The Wiser. LOL yeah right! -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet

[PHP] Looking for link system

2001-08-14 Thread Thomas Deliduka
I'm looking for a yahoo-style link system done in PHP. Anyone know if a good one exists out there and where I can find it? -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List

Re: [PHP] Looking for link system

2001-08-15 Thread Thomas Deliduka
On 8/15/2001 9:36 AM this was written: what kind of a link system do you mean? Like the categories search, or something else? Yeah, I found one: http://www.in-link.net/ -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http

Re: [PHP] Listing files from a directory

2001-08-21 Thread Thomas Deliduka
On 8/21/2001 11:42 AM this was written: I am trying to find a way to list files alphabetically. Try putting the filenames into an array and sort the array. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com

Re: [PHP] Re: PHP indexOf()?

2001-08-21 Thread Thomas Deliduka
On 8/21/2001 3:43 PM this was written: For someone used to Java JavaScript.. what function would replace myString.indexOf(myStringPiece) ?? Strstr() Or stristr() for case insensative search http://www.php.net/manual/en/function.strstr.php -- Thomas Deliduka IT Manager

[PHP] The future of PHP

2001-08-22 Thread Thomas Deliduka
for at least another 6-7 years. This kid thinks it's shelf life is another 3. What do ya'll think? -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Re: The future of PHP

2001-08-22 Thread Thomas Deliduka
On 8/22/2001 10:52 PM this was written: I don't know if you refer to this list or other one, but I've been a webmaster since 1993 and in computers in general since 1988 and I also consider myself of the advanced type. It definitely wasn't this list. It's another one. -- Thomas Deliduka

Re: [PHP] The future of PHP

2001-08-23 Thread Thomas Deliduka
his point. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [PHP] PHP vs CGI Search ?

2001-08-24 Thread Thomas Deliduka
on this list but I forget where it is. Perhaps the support page on www.php.net will give it. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

Re: [PHP] The future of PHP

2001-08-24 Thread Thomas Deliduka
-technological companies, big or small. So I don't think your anti-big corporations speech has much to do with this. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http

Re: [PHP] The future of PHP

2001-08-24 Thread Thomas Deliduka
that painless under Java.) But we use PHP on some very large projects too - it requires you to plan ahead - but that should be the basis for any project, regardless of technology. :) -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst

Re: [PHP] The future of PHP

2001-08-31 Thread Thomas Deliduka
in 10-12 years. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [PHP] cURL support

2001-09-10 Thread Thomas Deliduka
/SSL with PHP 4.0.6 and it wouldn't work. I don't know what the errors are so I can't really help with this conversation. I will probably try a later version of cURL to see how it works. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst

Re: [PHP] equivelant of ASP's #include file?

2001-09-13 Thread Thomas Deliduka
the contents of an ascii file: !-- #include file = filename.txt -- Can anyone tell me what the PHP equivelant might be? -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http

[PHP] Have y'all seen this?

2001-09-14 Thread Thomas Deliduka
This is a pretty funny article: http://www.bbspot.com/News/2000/6/php_suspend.html -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

Re: [PHP] closing persistance connection

2001-09-20 Thread Thomas Deliduka
On 9/20/2001 5:56 PM this was written: How to close persistance connection to MySQL server ? You don't, they stay open for a certain amount of time, not sure how long.. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http

Re: [PHP] fired!

2001-09-21 Thread Thomas Deliduka
! It should be interesting, it probably won't come to anything. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] Capturing the url in the location bar

2001-05-15 Thread Thomas Deliduka
the site requested with the rest of the url. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

[PHP] Discussion board

2001-05-22 Thread Thomas Deliduka
Is there a good PHP alternative for a discussion board or something else that allows for moderators and other good features that will run on Linux? -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP

Re: [PHP] Discussion board

2001-05-22 Thread Thomas Deliduka
features that will run on Linux? -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Lists are back up

2001-06-18 Thread Thomas Deliduka
On 6/18/2001 3:15 PM this was written: We have re-enabled the PHP mailing lists. They are now running from a temporary machine sitting on the floor of my spare bedroom. A more permanent home is in the works. LOL, ya hoo!! -- Thomas Deliduka IT Manager - New

Re: PHP version?

2001-06-18 Thread Thomas Deliduka
. Is there any changes in the version which could be causing these problems? Not sure, any mysql-related stuff here: http://www.php.net/ChangeLog-4.php -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/

Re: [PHP] logout

2001-06-20 Thread Thomas Deliduka
authentication I'm not sure. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/

Re: [PHP] Pricing Advice Needed

2001-06-29 Thread Thomas Deliduka
= foobar($bar); } Or If ($foo == bar) { $dofoo = fobar($foo); } else { $dofoo = foobar($bar); } I would never trust someone who charged by line. I think in general it's about $100-$150/hour for programming/database work. -- Thomas Deliduka IT Manager - New Eve

[PHP] Question on Commercial Offerings

2001-06-30 Thread Thomas Deliduka
to their hosting. Well, we want to migrate this to PHP/MySQL and I don't know how to protect the source code. My boss is suggesting to make a DSO but I really am not a C programmer to do all that. I want to make it all in PHP but somehow protect the code. Any ideas? -- Thomas Deliduka IT Manager

Re: [PHP] can I fopen an https url?

2001-07-09 Thread Thomas Deliduka
://www.php.net/manual/en/ref.curl.php) -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] Example high-profile PHP sites

2001-07-26 Thread Thomas Deliduka
, impressive-sounding, high-profile sites using PHP. I went looking for the list on PHP.net, and the closest I could find is http://pt2.php.net/sites.php which, as you'll see, is suffering from a fatal error. -- Thomas Deliduka IT Manager - New Eve Media The Solution

Re: [PHP] Teen Hobos having sex? ..no.. but MAYBE

2001-07-26 Thread Thomas Deliduka
--- -- 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] -- Thomas Deliduka IT Manager - New

Re: [PHP] Is it server Push?

2001-02-07 Thread Thomas Deliduka
On 2/7/01 5:09 PM this was written: Use flush(); each time you want the latest output to be sent to the client. This works only with PHP as a Webserver-Module, not as CGI. Thanks! -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst

Re: [PHP] mysql_fetch_array and row referencing under 4.0.4pl1

2001-02-12 Thread Thomas Deliduka
that I've missed reading about?? Heelp me ... I dont want to have to rebuild all my sites just because of these stupid quotes.... -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- P

Re: [PHP] pro's and con's of storing images

2001-02-14 Thread Thomas Deliduka
might make it simpler for me. also ftp functions don't work on the server and my damn isp keeps fobbing me off when i ask him to do anything. I would make an upload form and put the image on the server. IMHO, but that's only because I've never really worked with BLOB values in mySQL -- Thomas

Re: [PHP] id

2001-02-19 Thread Thomas Deliduka
ws($findit)) { echo "Error! username exists"; } Or whatever code you want to add there. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] mysql problem

2001-02-19 Thread Thomas Deliduka
ereas the win32 port doesnt seem to care very much)... for future reference, i reccomend trying out your SQL code in the MySQL monitor (the command line utility that comes with the server)... generally the error messages are *MUCH* more helpful than the ones i get via PHP -- Thomas

Re: [PHP] members page

2001-02-19 Thread Thomas Deliduka
. If you're authenticating via .htaccess you can use the environment variable "REMOTE_USER" to use as the username to do the select on the db. Something like: $user = getenv("REMOTE_USER"); $sql = "Select * from usertable where username = '$user'"; -

Re: [PHP] header

2001-02-19 Thread Thomas Deliduka
the header function, this is because it is not responding. I use it like this. header('Location: contrato.html'); -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http

Re: [PHP] processing form data

2001-02-20 Thread Thomas Deliduka
t;Submit data" /FORM /BODY /HTML HTML !-- processform.php -- BODY ?php echo ("Welcome, " . $username . "!") ? /BODY /HTML Thanks in advance Denis -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Inter

Re: [PHP] processing form data

2001-02-20 Thread Thomas Deliduka
e here : INPUT TYPE=TEXT NAME="username"BRBR INPUT TYPE=SUBMIT VALUE="Submit data" /FORM /BODY /HTML HTML !-- processform.php -- BODY ?php echo ("Welcome, " . $username . "!") ? /BODY /HTML -- Thomas Deliduka IT Manager ---

[PHP] Terrible Hosting Experience

2001-02-20 Thread Thomas Deliduka
s, they're terrible. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [PHP] Terrible Hosting Experience

2001-02-20 Thread Thomas Deliduka
er tight (security-wise) They were given a cease and desist order. I have heard, however, that they have gotten a little more security conscience since then. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.co

Re: [PHP] Terrible Hosting Experience

2001-02-20 Thread Thomas Deliduka
to her in the office." I said, "You office is in a whole-nother state from where the server is. It traveled unsecurely from your location to the server and back again several times in the last few days." she was clueless. Okay, I'm shutting up now. -- Thomas Deliduka IT Manager --

Re: [PHP] Terrible Hosting Experience

2001-02-21 Thread Thomas Deliduka
with them. They may be a tad high but their support is impeccable. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] Terrible Hosting Experience

2001-02-21 Thread Thomas Deliduka
with GlobalCenter (GC), Qwest Communications and GTE through three separate bandwidth-on-demand connections which enter Baltimore in our building. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- PHP General

Re: [PHP] Terrible Hosting Experience

2001-02-21 Thread Thomas Deliduka
GC), Qwest Communications and GTE through three separate bandwidth-on-demand connections which enter Baltimore in our building. --- They are a reseller of Alabanza Servers. I wouldn't go with them. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet

Re: [PHP] pleaaaaaaaase help!

2001-03-01 Thread Thomas Deliduka
] Sent: Thursday, March 01, 2001 11:59 AM Subject: [PHP] plese help! Hi! please i'm really in need of knowing if there is a way to do a php statement once a button is clicked! -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet

Re: [PHP] Monthly Drawing Winner!

2001-04-04 Thread Thomas Deliduka
On 4/4/2001 1:32 PM this was written: cheesemode="ON" If you're using PHP, you're already a winner (in my book anyway!) /cheesemode LOL -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/ -- P

[PHP] CGI ver. showing exec line

2001-04-04 Thread Thomas Deliduka
looks like this: #!/usr/local/php4/bin/php -q ? Code. ? And the first line is displayed to the screen when the script is ran. Why is that and does anyone know how to stop that? -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http

Re: [PHP] CGI ver. showing exec line

2001-04-05 Thread Thomas Deliduka
) I.e. The file looks like this: #!/usr/local/php4/bin/php -q ? Code. ? And the first line is displayed to the screen when the script is ran. Why is that and does anyone know how to stop that? -- Thomas Deliduka IT Manager - New Eve Media

Re: [PHP] insert data to mysql

2001-04-23 Thread Thomas Deliduka
.. You're using double-quotes inside of double quotes. You need to use single quotes VALUES('$client', '$contact', '$email', '$address', '$city', '$state', '$zip', '$phone', '$fax', '$model', '$country', '$details', '$type'); -- Thomas Deliduka IT Manager - New Eve