Re: [PHP] An easier way? $_POST[] => $_SESSION[]

2004-11-01 Thread Erich Kolb
Thanks a million, this is exactly what I was looking for! -- http://www.providenames.com http://www.erichkolb.com http://www.kolbsoft.com http://www.phpquestions.com "John Nichel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Erich Kolb wrote: >>

Re: [PHP] PHP Working With Excel File ?

2004-11-01 Thread Erich Kolb
I think the easiest way is to store your data in MySQL and then create a DSN via MyODBC and connect to your spreadsheet. "Matt M." <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >> Can PHP work with Excel files as database ? >> If not, how can I conver it to MySQL format and >> reco

[PHP] An easier way? $_POST[] => $_SESSION[]

2004-11-01 Thread Erich Kolb
Is there an easier way to assign all post data from a form to session data? Eg., $_SESSION['first_name'] = $_POST['first_name']; $_SESSION['last_name'] = $_POST['last_name']; $_SESSION['email'] = $_POST['email']; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

Re: [PHP] Search Submission Tool

2003-09-28 Thread Erich Kolb
Kennedy > > -Original Message- > From: Erich Kolb [mailto:[EMAIL PROTECTED] > Sent: Friday, September 26, 2003 10:55 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Search Submission Tool > > > Im putting together a free web based tool available to anyone who wan

[PHP] Search Submission Tool

2003-09-26 Thread Erich Kolb
and I will be adding some additional search engines, but I was wondering if anyone would be willing to take a look and offer any suggestions for improvement. I apoligize if this is in the incorrect forum, but im looking for as much feedback as possible. Thanks, Erich Kolb -- PHP General Mailing

[PHP] Job Offer

2003-07-03 Thread Erich Kolb
The company that I work for is currently looking for an additional web developer. If you are interested, please send your resume and a link to at least 3 of your most recent projects. Qualified candidates should have at least 4 years of experience with HTML/Javascript Design, PHP, MySQL, Apache,

[PHP] PHP user group

2003-07-01 Thread Erich Kolb
Does anyone know of a PHP user group near Gurnee, IL. I found one in Chicago, but its a little far to go and they meet in the middle of the day on Sat. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Speed up MySQL

2003-06-27 Thread Erich Kolb
I am already running MySQL 4, how would I go about adding indexes? "Manuel Lemos" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > On 06/27/2003 04:55 PM, Erich Kolb wrote: > > Can anyone offer some suggestions as to how I can speed up MyS

[PHP] Speed up MySQL

2003-06-27 Thread Erich Kolb
Can anyone offer some suggestions as to how I can speed up MySQL query results? I have a simple database with 3 fields in 1 table. The thing is that there are over 11 million records. Average query time is about 25 seconds. The machine itself is pretty fast(P4 1.8ghz/ 1gb ram). Any suggestions

[PHP] Re: PHP and XML-RPC on MS Windows

2003-06-11 Thread Erich Kolb
Nevermind. Duh, I can do it by: include ("xmlrpc.inc"); or include ("xmlrpcs.inc"); "Erich Kolb" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > What do I have to do in order to use the XML-RPC functionality on a Windows > based machine?

[PHP] PHP and XML-RPC on MS Windows

2003-06-11 Thread Erich Kolb
What do I have to do in order to use the XML-RPC functionality on a Windows based machine? It was fairly easy to drop the .inc files into the PHP include directory on a Linux box, but I am not sure if it is possible to do the same on a Windows machine. -- PHP General Mailing List (http://www.p

[PHP] Array[array]

2003-06-10 Thread Erich Kolb
How do I get a value from an array thats inside of an array? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How do I grab the first X characters of a string?

2003-06-04 Thread Erich Kolb
How do I grab the first X characters of a string? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP and POP3

2003-06-02 Thread Erich Kolb
I am somwhat aware of the ability to access email using php and IMAP, but is it at all possible to download email via pop3? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Help with fread

2003-05-29 Thread Erich Kolb
How can I get statistics from a remote file? I am trying to get info on: FileSize Date Created Date Modified when: fopen ("http://somedomain.com/somefile.ext";, "r") Also, I am unable to use filesize function where $fp = fopen("http://somedomain.com/somefile.ext";, "r"). Is it possible to do t

[PHP] CleanUp!!

2003-05-29 Thread Erich Kolb
How can I clean this up? $in_file = http://somedomain.com/somefile.php; $out_file = ereg_replace("http://";, "", $in_file); $out_file = ereg_replace("/","-", $out_file); $out_file = "/www/dev/".$out_file; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.n

[PHP] Multiple values per variable

2003-03-11 Thread Erich Kolb
I am working on some logic where users are categorized based on the results from a few questions. So far everything is working properly, but I would like to be able to assign multiple categories to each user. Any ideas on how to accomplish this? I am assuming that an array would be in order, but

[PHP] gethostbyaddr woes

2003-02-26 Thread erich
for some reason i cannot retrieve a hostname using gethostbyaddr(). if it helps, my host is http://phpwebhosting.com/. i have asked them countless times if it is something on their end causing this and have been told that it works for them and i must be doing something wrong. any suggestions? -

[PHP] html tags

2003-02-08 Thread Erich C. Beyrent
the ini file encapsulated in double quotes. It still fails when I do the base64_decode(), except then I get nothing printed back to the browser. Any ideas? -Erich- ===CODE // Get the form variables $month = $_REQUEST['month']; $day = $_REQUEST['day']

[PHP] headers and redirect

2003-02-05 Thread Erich Beyrent
age causes another event to be added. I tried: header("Location: ./php/events.php"); But that did not reset the headers. Any tips? -Erich- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Removing elements of multidimensional array

2003-01-30 Thread Erich C. Beyrent
ext($array); } else { next($array); } } // This prints the contents of the array, and the value that I tried to unset is still there... print_r($array); * END CODE * Thanks! -Erich-

[PHP] Re: Removing elements of multidimensional array

2003-01-30 Thread Erich C. Beyrent
while($key = key($array)) > { > if ($key == $event) > { >unset($key); >next($array); > } > else { next($array); } > } > // This prints the contents of the array, and the value that I tried to unset is >still there... > print_r($array); > > * END

[PHP] parsing ini files

2003-01-28 Thread Erich C. Beyrent
ormat in my ini file? Thanks in advance! -Erich- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Databases vs. File Access

2003-01-08 Thread Erich Kolb
I am going to be dealing with a ton of data shortly and my goal is to make it accessible via the web. I am curious about the performance differences between using a database or leaving the data in the individual files they originated in. Can anyone offer any recommendations? -- PHP General Mai

[PHP] Newbie Help

2003-01-03 Thread Erich Kolb
Does anyone have an example of how to download newsgroup headers from a NNTP server and insert them into a MySQL DB? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Please Help

2002-10-28 Thread Erich Kolb
: www.kolbsoft.com. Thanks, Erich Kolb President - KolbSoft Technologies http://www.kolbsoft.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP on WinXP with Apache

2002-10-25 Thread Erich Kolb
I am trying to install php-4.2.3-Win32 on MS WinXP using apache_2.0.43-win32-x86-no_ssl. I have followed instructions included in the php package only I have changed: LoadModule php4_module "C:/php/sapi/php4apache.dll" to LoadModule php4_module "C:/php/sapi/php4apache2.dll" I am receiving: apache

Re: [PHP] Looking for feedback

2002-10-03 Thread Erich Kolb
Ok, I have removed the http://www.phpdiscuss.com > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Looking for feedback

2002-10-03 Thread Erich Kolb
Sorry for the ID10T, the address is: http://www.phpdiscuss.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Looking for feedback

2002-10-03 Thread Erich Kolb
I have setup a web-frontend to the PHP.net Usenet/Mailing List Groups. Could anyone take a look and give me some recommendations on enhancements? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php back?

2002-09-03 Thread Erich Kolb
What is the PHP equivalent to javascript: back? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP Cookies

2002-08-26 Thread Erich Kolb
Why cant I use more than 1 variable in a cookie? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Help with script

2002-08-26 Thread Erich Kolb
Please see below. I have posted the entire script. "Bogdan Stancescu" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]... > Then you're doing something wrong. Can you post a piece of code? > > Bogdan > > Erich Kolb wrote: > > I have already

[PHP] Pausing PHP?

2002-08-22 Thread Erich Kolb
Is there a way to "pause" a script? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Remove \n from text

2002-08-20 Thread Erich Kolb
How can I remove all \n and \r from a txt file? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP and Samba

2002-08-14 Thread Erich Kolb
Is there any way to determine if someone is logged in to a Samba Domain using PHP? If so, how? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP and MySQL

2002-08-02 Thread Erich Kolb
Is there any way to speed up MySQL queries? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHPDiscuss.com

2002-07-12 Thread Erich Kolb
I have started a new website devoted strictly to discussing development with PHP. If anyone is interested, you can see it at http://www.phpdiscuss.com. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] unknown problem of script

2002-05-21 Thread erich
i run a install.php, the server says the following statement, Warning: Undefined index: install in d:\wwwroot\program_files\install.php on line 14 the strange things is when i install the php program, it does not have outputted this warning, but this warning occurs when i put all the files to a r

Re: [PHP] header-sending misbehaving

2002-05-18 Thread erich
jason wong what is meant by output buffering? what PHP function(s) can support output buffer? thanks erich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] BUG?: for loop using chars

2002-05-16 Thread Erich Reimberg N
for ($l='A'; $l<='Y'; $l++) echo $l."-"; generating the expected output. IS this a bug in PHP? Any help? Please, if you can, Cc to my email: [EMAIL PROTECTED] TIA, Erich --- Wrong output: A-B-C-D-E-F-G-H-I-J-K-L-M-N-O-P-Q-R-S-T-U-V-W-X-Y-Z-AA-AB-AC-AD

[PHP] header-sending misbehaving

2002-05-13 Thread erich
suppose i want to login to a privileged area sending header info to browser, however, i get header warning as follows when i go to a db system named eskuel: Warning: Cannot add header information - headers already sent by (output started at g:\wwwroot\vauth\auth.php:5) in g:\wwwroot\eskuel\main.ph

[PHP] Global variable

2002-04-17 Thread Erich Kolb
I have developed a simple login script. Right now it will check a submitted username and password and verify it against a database. This part works fairly well, however I want to know how to assign a variable that will pass through to the next page(s) to do something like: if verified == 1 then

[PHP] difficulty in solving the unknown warning

2002-04-08 Thread erich
i am a php programmer whose learning expr. is about 2 months. whatever > running script of php that written by other php programmer or me, i > always see the warning below shown, why this occurs? how to avoid? > > Warning: Undefined variable: HTTP_VIA in > g:\wwwroot\phpformmail\formmail.php on l

[PHP] Download a file with PHP

2001-09-14 Thread Erich Kolb
How do I download a file with PHP? I have a few hundred .xml and .rdf files that I want to download on a regular basis. -- 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 administrat

[PHP] Host question

2001-08-20 Thread Erich Kolb
Just out of curiosity, is there anyone here that is using phpwebhosting.com to host their site? Due to ALL the problems with the DSL in my area, I am thinking about not hosting my own site anymore and phpwebhosting.com seems to be what I need, I am just looking for some input about any problems t

Re: [PHP] $HTTP_REFERER

2001-08-17 Thread Erich Zigler
e way of doing it? Or can the $HTTP_REFERER be forged and thus gaining unauthorized access to the forms? -- Erich Zigler A sick mind is not necessarily the sign of a neat desk. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[PHP] $HTTP_REFERER

2001-08-17 Thread Erich Zigler
appreciated. Thank you. -- Erich Zigler -- 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] Loop though email list

2001-08-14 Thread Erich Kolb
I am a total newbie, so please forgive the simplicity! I have a huge list of email addresses in a text file and also in a MySQL DB that I would like to use PHP to loop through and send an email to each one of them. How do I loop through a text file using each email in the txt file as a seperate e

[PHP] strstr Question

2001-08-12 Thread Erich Zigler
ppreciate it. Thanks you. -- Erich Zigler I prefer rogues to imbeciles, because they sometimes take a rest. -- Alexandre Dumas (fils) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP] PHP & MySQL

2001-07-20 Thread Erich Kolb
When you query a MySQL Database, how do you set the order alphabetically? -- 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] Global Database

2001-07-16 Thread Erich Kolb
Does anynone know where I can find a database of "general information" like country abbreviations -> country, zip codes, state names? I am also looking for a database that has generic topic lists, sort of like how you see on Yahoo.com or DMOZ? If there is no database, would anyone be interested

[PHP] NEED BOOK: DB Abstaction

2001-05-24 Thread Erich Reimberg N.
s you can recommend Cc to my email address: [EMAIL PROTECTED] Thanks, Erich Reimberg N -- 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] Date/Time Arithmetic

2001-04-11 Thread Erich Reimberg N.
Hello, Is it possible to do some arithmetic with time/date values in PHP? for example, to calculate: today + 1050 days. today - 7 days. etc. I mean, does PHP have functions to perform these operations? Thanks, Erich Reimberg. PS. I'm new to PHP, and I didn't find any

[PHP] PHP4.04pl1 upgrade

2001-01-30 Thread Erich Kolb
Does anyone know where to obtain instructions on how to upgrade to PHP 4.04pl1? Has anyone done this yet? What kind of problems did you run into?

[PHP] XML to MySQL

2001-01-29 Thread Erich Kolb
Does anyone know of a script that will take data from XML/RDF news feeds and automatically INSERT into a MySQL database? I have a news script that I can make changes to, but I would also like to be able to automatically insert data into the database that my news script is running on.