RE: [PHP] Website to fax

2003-11-06 Thread M.A.Bond
See here: http://www.adslguide.org.uk/reviews/2003/q4/efax.asp For an e-mail to fax gateway service review. Mark -Original Message- From: Randum Ian [mailto:[EMAIL PROTECTED] Sent: 06 November 2003 12:31 To: menezesd Cc: php-general Subject: Re: [PHP] Website to fax Won't converting

RE: [PHP] PHP + Sybase - "auto_commit disabled"

2003-07-25 Thread M.A.Bond
I don't know a lot about sybase, but if it's anything like oracle it works like this: A query from the console will be commited when the console is exited (plus of course any select queries performing checks at the console will reveal the result as it will be after the commit has occurred). With a

RE: [PHP] Mail From option in PHP.ini

2003-07-18 Thread M.A.Bond
I take it you've also tried setting Reply-To: ?? Same format as From: Mark -Original Message- From: Brian S. Drexler [mailto:[EMAIL PROTECTED] Sent: 18 July 2003 16:25 To: 'sven'; php-general Subject: RE: [PHP] Mail From option in PHP.ini No, I tried this too. Here is what I've tried.

RE: [PHP] writing file

2003-04-01 Thread M.A.Bond
If you want to use the " in within the string, you should use ' to surround the string ie: $string='.. .'; Thanks Mark -Original Message- From: Diksha Neel [mailto:[EMAIL PROTECTED] Sent: 01 April 2003 12:21 To: [EMAIL PROTECTED] Subject: [PHP] writing file dear all,

RE: [PHP] Help me pervade Bristol City council to use PHP

2003-03-24 Thread M.A.Bond
We use it here (although you can't tell because we have set up the extension to be .html) http://library.open.ac.uk It queries a mysql database for the metadata as well as building up the pages. Mark Bond Systems Manager Open University Library -Original Message- From: Ben Edwards [ma

RE: [PHP] php/apache timeout

2003-03-11 Thread M.A.Bond
HI, Yes I was having this problem, it's probably not php timing out, but your browser. To stop this move the execution of your sql. I assume you do something like this: ... ... You need to move this as follows: Html code This starts sending the page to the browser, before runnin

RE: [PHP] Re: mail() function

2003-03-04 Thread M.A.Bond
Not strictly true, the mail function will send to multiple email addresses separated by a comma, you can also cc and bcc by using headers. See the manual, which has some good examples of this. Mark -Original Message- From: Patrick Schnegg [mailto:[EMAIL PROTECTED] Sent: 04 March 2003 13

RE: [PHP] How do I display the script file name?

2003-02-27 Thread M.A.Bond
With the output you are getting you will not see the output from the .' '. As it inserts a space into the ouputted text. There is an error after the $_SERVER['PHP_SELF'] the , should be a . (is this just a typo in the e-mail?) Thanks Mark -Original Message- From: Stephen Ford [mailto:[E

RE: [PHP] Reading Text file by line

2003-02-24 Thread M.A.Bond
Using $var=file('filename.txt'); Creates an array, with each element in the array being 1 line of the file. Thanks Mark -Original Message- From: Anthony [mailto:[EMAIL PROTECTED] Sent: 24 February 2003 16:24 To: [EMAIL PROTECTED] Subject: [PHP] Reading Text file by line I need to

RE: [PHP] Parse error

2003-01-14 Thread M.A.Bond
I'm new to PHP and am slowly learning it. I have the following code that is giving me errors could someone take a look and suggest a fix? Parse error: parse error in /home//public_html/Info/datain.php on line 7 http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Script not working from one computer

2002-12-05 Thread M.A.Bond
Have you checked: Browser versions? (is the browser the same type/version as on the other machines) Is it a laptop? If so, are you using the internal keyboard with Numlock on? Is the machine in question set-up on the network correctly, i.e. has it got domain, gateway addresses etc setup - this wou

RE: [PHP] mysql_num_rows

2002-11-21 Thread M.A.Bond
I suppose it's nothing to do with the spelling mistake in the sql statement (slecet should be select) Mark -Original Message- From: empty [mailto:[EMAIL PROTECTED]] Sent: 21 November 2002 15:57 To: [EMAIL PROTECTED] Subject: [PHP] mysql_num_rows Hi guys; I have a problem (or mistake

Re: [PHP] Finding last entry in MySQL database

2002-11-15 Thread M.A.Bond
Tim, This is a dangerous way of doing things, if you get a couple of people registering at the same time the system has the possibility of getting the wrong entry, you best bet is to have the upload script return the last insertid(I'm assuming your database has an autoincrement/id field) and pass

RE: [PHP] newbie question

2002-10-03 Thread M.A.Bond
It depends on the version of PHP, in older versions you just use the variable name ie in your example just use $var to access it's contents. In new versions, with register globals turned off use $_GET['var'] to access it ie: Print $_GET['var'] Will print numberx Thanks Mark -Original Mes