php-windows Digest 25 Jan 2001 22:59:38 -0000 Issue 415

2001-01-25 Thread php-windows-digest-help
php-windows Digest 25 Jan 2001 22:59:38 - Issue 415 Topics (messages 5202 through 5217): Re: Is it possible to CONVERT file formats? 5202 by: Simon Willison 5203 by: Piotr Pluciennik Re: Date + Time 5204 by: Simon Willison Genuine Opportunity 5205 by: NEWS!

[PHP-WIN] Web based Time Sheets for Professionals

2001-01-25 Thread Web Time Sheets
Announcing the eTech Online Time Sheet system for gathering Employee Time over the Internet. Online TimeSheets easily integrate with Payroll, Billing & Project Management. Simplified Time Tracking and Project Management is a click away. http://www.solutioncorp.com/timesheet.shtml Please call

[PHP-WIN] PHP on Load Balanced Servers

2001-01-25 Thread Sean . Rector
I'm investigating the possibility of installing PHP onto a pair of Load Balanced Win NT4 Enterprise Servers, running Windows Load Balance Service. Does anyone have any information on how PHP performs/would perform in this environment? Are there any "gotcha's" that I need to look for? I'll want P

FW: [PHP-WIN] Problem with Session, Form, and Back

2001-01-25 Thread Gregory_Griffiths
either use something like Javascript to clear all the fields on load or have the file set not to be cached ? > > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > > Sent: 25 January 2001 16:28 > > To: [EMAIL PROTECTED] > > Subject: FW: [PHP-WIN] Problem with

[PHP-WIN] How to create an .CAB file ( or something compressed ) with php - IIS - 2000.

2001-01-25 Thread Gastón Gorosterrazú
Hi! Ive tryed exec or `` and shell_exec but nothing happens. $pepe = `makecab something.html someother.html`; Thanks in advance.

[PHP-WIN] Problem with Session, Form, and Back

2001-01-25 Thread Dreamvale
Hi, This is the scenario.. I have a page with form for user to fill in some data When submit is clicked.. to the next page, and when the Back button on the browser is hit back to that form, all the data has been wiped out, back to blank. Have checked that when session_start is used, this pro

Re: [PHP-WIN] ASP to PHP (Secure MS Access connection)..

2001-01-25 Thread Gonzalo Vera
I've never handled secured db's, but in windows' control panel, in the ODBC applet where you define DSN, you can also define the system db for each db. When connecting in PHP your string has DSN, user and password, like: $dsn="AnyDSN"; $user="Joe"; $pass="foobar"; $conn = odbc_connect($dsn,$user,

[PHP-WIN] Re: Header Expire, PHP, and browsers

2001-01-25 Thread Svemir
Hello again! As I am receiving the digest version of the list, I am not sure if someone has already answered to my question. But thank you anyway. I found the way that works so far. I changed the "Expire" header to: Header set Cache-Control "no-cache" Svemir -- PHP Windows Mailing List

RE: [PHP-WIN] Less Than x but greater than y

2001-01-25 Thread Ben Cairns
Thanks You guys, that was what i was looking 4 -- Ben Cairns - Head Of Technical Operations intasept.COM Tel: 01332 365333 Fax: 01332 346010 E-Mail: [EMAIL PROTECTED] Web: http://www.intasept.com "MAKING sense of the INFORMATION TECHNOLOGY age @ WORK.." -- PHP Windows Mailing List (http:/

Re: [PHP-WIN] Less Than x but greater than y

2001-01-25 Thread Jan Walter
Ben Cairns wrote: > if ($answer == 0) { ?> 0 > if ($answer >0 but <=20) { ?> more than 0 but less than or equal to 20 ?> You should try: if ($answer > 0 && $answer <= 20) { dosomething; } Look up at Logical Operators reference in the manual. Bye -- _

Re: [PHP-WIN] Less Than x but greater than y

2001-01-25 Thread Ernest E Vogelsinger
At 14:46 25.01.2001, Ben Cairns said: [snip] >if ($answer == 0) { ?> 0 >if ($answer >0 but <=20) { ?> more than 0 but less than or equal to 20 0 and $answer <= 20) print "more than 0 but less than or equal to 20"; else print "below 0 or above 20";

RE: [PHP-WIN] Less Than x but greater than y

2001-01-25 Thread Asendorf, John
It's not so much "but" as "and"... so if ($answer > 0 && $answer <= 20) { } See the manual on logical operators - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking County, Ohio, USA 740-349-3631 The be

[PHP-WIN] Less Than x but greater than y

2001-01-25 Thread Ben Cairns
I am writing a script that adds a collection of variables and then does something depending on the answer Basically, I need the syntax for this: 0 if ($answer >0 but <=20) { ?> more than 0 but less than or equal to 20 But, that doesn't seem to work, Can anyone help me with the syntax?

[PHP-WIN] Genuine Opportunity

2001-01-25 Thread NEWS!!
Please see bottom of message for remove instructions. What you are about to read is tried, true, poven and effective. Have you ever tried or consideredmaking money using the medium of the internet? Are you marketing or promoting a business opportunity or product online? There is a LOT of mon

[PHP-WIN] RE: Date + Time

2001-01-25 Thread Simon Willison
You can use PHP's date function to do this - information here: http://www.php.net/date In your case the function would be... $yourdate = date("d") . (date("w") + 1) . date("mY"); I'm pretty sure that will work - I had to use a messy construct because the "w" element of the date function returns

RE: [PHP-WIN] Is it possible to CONVERT file formats?

2001-01-25 Thread Piotr Pluciennik
Hi, if I can suggest using Word, not in native .doc format as usually but in RTF. It's in my opinion easier to parse and you can have all advantages of text attributes (bold, italic and so on) for generating HTML or XML, ease of use for users (in MS Word)... think about such solution and let me k

RE: [PHP-WIN] Is it possible to CONVERT file formats?

2001-01-25 Thread Simon Willison
I've player around with a few concepts involving this, and come up with 3 possible (although tricky) solutions: 1. Use your own code similar to the UBB syntax used on many message board systems. Here users can use HTML-like codes such as [b]Text in bold[/b], [i]text in italics[/i] etc - it's ve

php-windows Digest 25 Jan 2001 10:25:52 -0000 Issue 414

2001-01-25 Thread php-windows-digest-help
php-windows Digest 25 Jan 2001 10:25:52 - Issue 414 Topics (messages 5197 through 5201): ASP to PHP (Secure MS Access connection).. 5197 by: Kevin Ferron Re: Is it possible to CONVERT file formats? 5198 by: Darvin Andrioli 5201 by: Tom Mathews Re: Linux conection t

Re: [PHP-WIN] Is it possible to CONVERT file formats?

2001-01-25 Thread Tom Mathews
This issue cropped up with us a little while ago, but in a slightly different context. We have documents that are created using Word (PC users) and FrameMaker (die hard Unix users that do not want anyone else to be able to edit their work without first taking a degree in pontlessness). All of thes

[PHP-WIN] Date + Time

2001-01-25 Thread Ben Cairns
I need to get the date, day, month,year from the server that PHP is running on. How can I do this. I need this information to be returned like: 255012001 Explained: The Date (Numerical - 2 Digits) Day (Day Number, Weeks starts on Sunday - Sun=1, Mon=2, Tue=3) Month (Numerical - 2 Digits) Ye

Re: [PHP-WIN] Linux conection to MS Access

2001-01-25 Thread Warwick Chapman (Budgee)
Howdy Configure the DB as a System DSN in the ODBC Data Source Administrator (Win2k) or similar in NT. Then just access as follows: odbc_connect("dbname","user","pass"); Cheers Budgee On 24 Jan 2001, at 13:24, Gonzalo Vera wrote: > Is there a way to connect to a MS Access database on a remot

RE: [PHP-WIN] Is it possible to CONVERT file formats?

2001-01-25 Thread Darvin Andrioli
Hi Mike I'm wrinting an intranet site where my colleagues can write notes about their job, so I'm interested to your post. I evaluated many ways to write this notes.Html? No, nobody knows html. Word? Yes it may be a possible solution. As you wrote its usefull get only the text, because I get th