RE: [PHP-WIN] Can php generate MS word doc format?

2002-07-24 Thread Peter
Nicole, if you have StarOffice or OpenOffice on your machine or have access to it it can save into MS Word Doc format.. just use the save as.. cheers > -Original Message- > From: Nicole Amashta [mailto:[EMAIL PROTECTED]] > Sent: Thursday, 25 July 2002 1:36 PM > To: [EMAIL PROTECTED] > Su

Re: [PHP-WIN] Can php generate MS word doc format?

2002-07-24 Thread Nicole Amashta
Thanks, But I don't have (or want to) MS Word Doc on my computer. So I thought I'd just use PHP to dynamically generate a Word doc. I just need to convert my resume to a word document. Plain ASCII txt files must not be good enough for those employers. Thanks! -- Nicole Amashta Web Application

Re: [PHP-WIN] Can php generate MS word doc format?

2002-07-24 Thread Scott Carr
If you have Word installed, you can create an object and create the document that way. Otherwise, no, PHP can't create Word DOCS internally. On the other hand, you can create and manipulate OpenOffice.org docs directly inside of PHP using XML. The format is open and easy to understand. (Of

[PHP-WIN] In php coders near Atlanta GA?

2002-07-24 Thread Nicole Amashta
Hello, I'm wondering if there are any PHP programmers/developers in the Atlanta metro area, particularly other females. Looking to find like-minded friends who would be interested in embarking on a project with me. Thanks! -- Nicole Amashta Web Application Developer www.aeontrek.com - - - - - H

[PHP-WIN] Re: tricky session question

2002-07-24 Thread Nicole Amashta
You can store arrays in sessions ... you may be able to store objects in sessions, although I don't think you can do objects with PHP's sessions. Is the data such that you can store it in an array? If not, store the ID's of the data and then requery again on the next page ... good luck, -- Nico

[PHP-WIN] tricky session question

2002-07-24 Thread Kit Kerbel
I am attempting to paginate some results. All code is on the same page, so keep that in mind. So i query for the results i want, all is fine and dandy. when i click on the link to go to the next page of results, all is lost. Any ideas as to how to tackle this issue? thanx, Kit _

php-windows Digest 25 Jul 2002 02:32:29 -0000 Issue 1256

2002-07-24 Thread php-windows-digest-help
php-windows Digest 25 Jul 2002 02:32:29 - Issue 1256 Topics (messages 14915 through 14926): reading input from a magnetic stripe and then parsing it to a MySQL database for querry? 14915 by: Mentor Mala mktime limitation 14916 by: Kit Kerbel 14918 by: Kit Kerbel D

[PHP-WIN] Can php generate MS word doc format?

2002-07-24 Thread Nicole Amashta
This is the first place I am going to look for an answer to this... Can PHP generate a word document formatted file? If so, can someone point me to where I might find some documentation for this. I checked php.net and typed "doc" in the search field for functions I'll search elsewhere also.

Re: [PHP-WIN] Apache Virtual Hosts Local Machine Help

2002-07-24 Thread Luis Ferro
Indulging some patience to list subscribers regarding a not 100% in topic message (but nevertheless very usefull to php under windows)... Here is as promissed a overview of my configs with virtual hosting with apache under windows... Install apache then... change the hosts file located in \wi

RE: [PHP-WIN] PHP WIN2K MYSQL Authentication

2002-07-24 Thread Rich Gray
Frank I'll guess you are using v4.2.x of PHP - well the $PHP_AUTH_USER probably won't be set as now the default installation has the register_globals directive set to off rather than on... this has broken lots of existing code... You have 2 options... 1) Switch back on register_globals in php.i

[PHP-WIN] PHP WIN2K MYSQL Authentication

2002-07-24 Thread Frank Tudor
I am trying to authenticate to my site. I have had no success. All I get is the pop-up window reutrning over and over again. Like it is not even looking at the code. Please help. This seems like standard stuff floating around various php sits so why it doesn't work is a mystery. Here is my co

Re: [PHP-WIN] Dumb date question

2002-07-24 Thread Scott Carr
$strTime = date("mm/dd/", strtotime("Jan 13, 2002")); -- Scott Carr OpenOffice.org Documentation Maintainer http://documentation.openoffice.org/ Quoting "R.S. Herhuth" <[EMAIL PROTECTED]>: > > I was hoping someone could help me quickly. I did a quick scan of the > documentation but I cou

[PHP-WIN] Dumb date question

2002-07-24 Thread R.S. Herhuth
I was hoping someone could help me quickly. I did a quick scan of the documentation but I couldn't find the answer. How can I convert a month that appears as a string like "Jan" into the numerical equivelent such as "12" without doing a huge if-then statement? Thanks, Ron -- PHP Windows Mail

[PHP-WIN] socket_set_block(); - question

2002-07-24 Thread Micha
Hi, I found the function socket_set_block(); in ext/sockets/sockets.c (the function is not documented) and I tried to use it but it seems to doesn't take effect... Why doesn't this function work ? Am I doing something wrong ? Here is my code: function sockRead($length = 1) { soc

[PHP-WIN] Problem with mktime

2002-07-24 Thread Kit Kerbel
I am running php4.2.1 on NT4. I can't seem to get the mktime function to work for dates previous to jan, 1 1970. It notes on php.net that with 32 bit systems, the range should go back as far as 1902. Any ideas? Kit _ Chat wit

[PHP-WIN] mktime limitation

2002-07-24 Thread Kit Kerbel
here it is again. Does anyone know of a good way to do this: //Date calculation $today = getdate(); $mn = $today['mon']; $dy = $today['mday']; $year = $today['year']; if ($AGEFROM=="") { $AGEFROMx = 32; $AGEFROMCALC = strftime("%m/%d/%Y",mktime(0,0,0,$mn,$dy,$year - $AGEFROMx)); } **withou

[PHP-WIN] Disregard last

2002-07-24 Thread Kit Kerbel
_ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] mktime limitation

2002-07-24 Thread Kit Kerbel
Does anyone know of a way to do this: //Date calculation $today = getdate(); $mn = $today['mon']; $dy = $today['mday']; $year = $today['year']; if ($AGEFROM=="") { $AGEFROMx = 32; $AGEFROMCALC = strftime("%m/%d/%Y",mktime(0,0,0,$mn,$dy,$year -$AGEFROMx));

[PHP-WIN] reading input from a magnetic stripe and then parsing it to a MySQL database for querry?

2002-07-24 Thread Mentor Mala
Hi all... I have just been asked to try and develop a system which will read the input from a magnetic stripe reader, and then parse the information onto a MySQL database for searching/matching number/information. Then displaying the info onto the screen. In other words, what I am trying to acc

php-windows Digest 24 Jul 2002 13:58:52 -0000 Issue 1255

2002-07-24 Thread php-windows-digest-help
php-windows Digest 24 Jul 2002 13:58:52 - Issue 1255 Topics (messages 14911 through 14914): Re: Apache Virtual Hosts Local Machine Help 14911 by: Peter 14912 by: Luis Ferro 14913 by: Luis Ferro Re: Is there a limit... PLEASE HELP I'm Desperate 14914 by: Max

RE: [PHP-WIN] Is there a limit... PLEASE HELP I'm Desperate

2002-07-24 Thread Max Sullivan
Have you tried changing the value of memory_limit in your php.ini file? If you have this set to 4mb, that may be your problem. Heres what it looks like in the php.ini file. memory_limit = 8M ; Maximum amount of memory a script may consume (8MB) -Original Message- From: R.S. Herhut

Re: [PHP-WIN] Apache Virtual Hosts Local Machine Help

2002-07-24 Thread Luis Ferro
I'm with access to the computer where i've apache+php+mysql with virtual directories right now... i will pass over my configs later on to the list... [in 10/12 hours from this post] Cheers... Luis Ferro -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.n