Re: [PHP] Download Counter Script

2002-11-15 Thread Ernest E Vogelsinger
At 06:39 15.11.2002, Twist said:
[snip]
   This is all great, the problem is that it loads a new page 
the way I am doing it.  I am using the header() function to get the 
browser to download.  I have seen sites with counters that download 
the file and update the count without loading a new page, without 
reloading the current page even.  So I am wondering how are they 
doing this?  Or better yet how can I get my script to work like I 
wish it to?
[snip] 

With MIME (and HTTP is MIME-compliant) you can transmit more than one
entity in a single pass - this is called multipart transmission. The
recipient (here: the browser) should handle all parts of a multipart
message per se.

What you need to do is to set the content type of the response to
multipart/alternative, and transmit the HTML result first, and the file
content next. Both parts are delimited by a boundary string, and each part
has its own MIME header.

Something like:

// construct the alternative hader for the site's response
$boundary = md5(date('hisjmy'));
header(Content-type: multipart/alternative; boundary=\$boundary\);

// The HTML page starts with a boundary and its own MIME header
$html_head = --$boundary\n .
 Content-Type: text/html\n .
 Content-Disposition: inline\n\n;

// The Attachment starts with another MIME header
$attach_head = \n--boundary\n .
   Content-Type: application/octet-stream\n .
   Content-Transfer-Encoding: base64\n .
   Content-Disposition: attachment;\n .
 filename=\$filename\;

Your response would then look something like this:

echo $html_head;
echo $html_page_contents;
echo $attach_head();
transmit_file_content();
echo \n--$boundary\n;

This is top off my head, but it should work. For more information on
multipart responses you might consult

ftp://ftp.rfc-editor.org/in-notes/rfc2045.txt (MIME Part I)
ftp://ftp.rfc-editor.org/in-notes/rfc2046.txt (MIME Part II)
ftp://ftp.rfc-editor.org/in-notes/rfc2047.txt (MIME Part III)
ftp://ftp.rfc-editor.org/in-notes/rfc2183.txt (Content-Disposition)


-- 
   O Ernest E. Vogelsinger
   (\)ICQ #13394035
^ http://www.vogelsinger.at/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: shell_exec problem

2002-11-15 Thread Sebastian Konstanty Zdrojewski
Why don't you try to use the system() function call? I use it to launch 
different programs on a server and it works perfectly. Be sure the 
sendfax application is launchable by the apache daemon.

Best Regards,

En3pY

Coert Metz wrote:
Hi everybody

I have some few problems with the shell_exec command.
I want to send a fax with hylafax using the sendfax program in linux.
When I try to do shell_exec (sendfax -n -d faxnumber faxfile) it will 
not work I can see in my httpd file that linux only gets the command 
'sendfax' and not the parameters '-n -d .'.

Can anybody help me?

Thanks in advance

Coert Metz



--
 Sebastian Konstanty Zdrojewski
IT Analyst

Neticon S.r.l.
Via Valtellina 16 - 20159 Milano - MI - Italy

Phone(+39) 02.68.80.731
E-Mail   [EMAIL PROTECTED]
Website  http://www.neticon.it



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] something like array_walk?

2002-11-15 Thread A. J. McLean
I want to take an array and get the soundex() for each element in that array
and return the results into another array.  Is there an clean way to do
this?

$color = array(blue, green, orange, purple, red, yellow);

function sound($word){
 $word = soundex($word);
}

array_walk($color, 'sound');
print join( , $color);

This will print out the array $color, which is now changed to soundex, i.e.
the original array (up top) has changed--which I don't want.  How can I
generate a separate array $colorsoundex?

Thank you.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Finding last entry in MySQL database

2002-11-15 Thread Tim Thorburn
Hi,

I'm creating a form which will allow individuals to add themselves to an 
online database and ask if they'd like to upload a picture.  I have the 
form setup which allows the individuals to add themselves - currently it 
asks if they have a picture to upload (a yes or no drop menu).  On the 
screen after the individual adds them self, I'd like to check the database 
for the last entry (the one just made) and then see if the picture column 
has a yes or a no stored.

What I don't know is how to select the last entry in a database ... I'm 
sure its something very simple, but with being up until 5am working on this 
site - it's slipped by caffeine powered brain.

Thanks
-Tim



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] something like array_walk?

2002-11-15 Thread Marek Kilimajer
What about

foreach($color as $c) {
   $color_soundex[]=soundex($c);
}

A. J. McLean wrote:


I want to take an array and get the soundex() for each element in that array
and return the results into another array.  Is there an clean way to do
this?

$color = array(blue, green, orange, purple, red, yellow);

function sound($word){
$word = soundex($word);
}

array_walk($color, 'sound');
print join( , $color);

This will print out the array $color, which is now changed to soundex, i.e.
the original array (up top) has changed--which I don't want.  How can I
generate a separate array $colorsoundex?

Thank you.



 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] something like array_walk?

2002-11-15 Thread Jon Haworth
Hi,

 I want to take an array and get the soundex() for each element 
 in that array and return the results into another array.  

How about:

$color   = array(blue, green, orange, purple, red, yellow);
$soundex = array();

foreach ($color as $foo) {
  $soundex[] = soundex($foo)
}

HTH

Cheers
Jon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Finding last entry in MySQL database

2002-11-15 Thread Ernest E Vogelsinger
At 11:11 15.11.2002, Tim Thorburn said:
[snip]
I'm creating a form which will allow individuals to add themselves to an 
online database and ask if they'd like to upload a picture.  I have the 
form setup which allows the individuals to add themselves - currently it 
asks if they have a picture to upload (a yes or no drop menu).  On the 

 From a UI guide - it would be better to present either a checkbox, or two
radiobuttons, for a simple question like this. Basically:
is it a yes or no - use a checkbox (checked=yes)
is it two options - use radiobuttons

screen after the individual adds them self, I'd like to check the database 
for the last entry (the one just made) and then see if the picture column 
has a yes or a no stored.

What I don't know is how to select the last entry in a database ... I'm 
sure its something very simple, but with being up until 5am working on this 
site - it's slipped by caffeine powered brain.

Could be tricky and depends on your data layout.
(a) you have an auto-increment ID value, then
select * from mytable where id = (select max(id) from mytable)
(b) you have a timestamp field, then
select * from mytable where dt_entry = (select max(dt_entry) from mytable)

Note that the timestamp solution could easily produce duplicates while the
auto-increments do not.


-- 
   O Ernest E. Vogelsinger
   (\)ICQ #13394035
^ http://www.vogelsinger.at/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] It only prints lines that beggin with a number? I'm ona deadline!

2002-11-15 Thread Marek Kilimajer


Godzilla wrote:


Hi everyone,

I have a pretty strange problem that may be simple, but I have never heard
of it.

//I have a database in the following format:

2
2
2
Cd's
Cd's
DVD's
DVD's
DVD's
DVD's
DVD's

// Someone recently helped me out in writing a short script that
would turn it into this:

2   1 \\ each unique entry gets a unique number separated by Tabs
2   1
2   1
Cd's2
Cd's2
DVD's   3
DVD's   3
DVD's   3
DVD's   3
DVD's   3

Here is the script
--
$count = 0;
$db = mysql_connect(localhost, user, pass);
mysql_select_db(database,$db);
$result = mysql_query (SELECT * FROM `data` WHERE categories);


try changing this query to

SELECT * FROM `data` WHERE categories != '' OR categories IS NOT NULL


while ($row = mysql_fetch_array($result)) {
 $currow = $row[0];
 if ($count == 0) {
   $lastrow = $currow;
   $count = 1;
 }
 echo $row[0] . \t . $count . BR\n;
 if ($currow != $lastrow) {
 $count++;
 } $lastrow = $currow;
}
--
This worked great on my home server. Now I need to move it over to our real
server which has an almost identical setup. The problem I have is that it
will only print rows that begin with a number! I have tried changing the
dbase format to just about everything, but still no good.
The table has about 4000 rows but the script only prints the first 300 or so
which are the ones that begin with a number. I have tried removing all of
the rows that start with a number, in that case it prints nothing, acting
like the other row's don't exist. My home server has since been formatted so
I can't verify what the setup was or if there was anything different about
it.
If anyone can help in any way it would be greatly appreciated, I am on a
deadline which ends in a few days and this is putting me behind schedule.

Thanks Very Much,Tim




 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] something like array_walk?

2002-11-15 Thread A. J. McLean
Thanks!  Just what I was looking for!

Jon Haworth [EMAIL PROTECTED] wrote in message
news:67DF9B67CEFAD4119E4200D0B720FA3F0241E788;BOOTROS...
 Hi,

  I want to take an array and get the soundex() for each element
  in that array and return the results into another array.

 How about:

 $color   = array(blue, green, orange, purple, red, yellow);
 $soundex = array();

 foreach ($color as $foo) {
   $soundex[] = soundex($foo)
 }

 HTH

 Cheers
 Jon



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] does PHP4.0 supports https:// post?

2002-11-15 Thread Marek Kilimajer
PHP doesn't really care if it is https or http, this is being taken care 
by the webserver.
If it is not working for you, you might have some browser issue.

Peter wrote:

Hi,
 What's the latest version of PHP that can handle HTTPS:// post?


Thanks,
-Peter



 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




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
it onto the next screen via a hidden variable in the form or via the url.

Mark


-Original Message-
From: Tim Thorburn [mailto:immortal;nwconx.net] 
Sent: 15 November 2002 10:11
To: [EMAIL PROTECTED]
Subject: [PHP] Finding last entry in MySQL database


Hi,

I'm creating a form which will allow individuals to add themselves to an 
online database and ask if they'd like to upload a picture.  I have the 
form setup which allows the individuals to add themselves - currently it 
asks if they have a picture to upload (a yes or no drop menu).  On the 
screen after the individual adds them self, I'd like to check the database 
for the last entry (the one just made) and then see if the picture column 
has a yes or a no stored.

What I don't know is how to select the last entry in a database ... I'm 
sure its something very simple, but with being up until 5am working on this 
site - it's slipped by caffeine powered brain.

Thanks
-Tim



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Report on: LDAP specific?

2002-11-15 Thread Tony Earnshaw
tor, 2002-11-14 kl. 11:50 skrev Krzysztof Dziekiewicz:

  I can show a jpeg using a href with a target, either in a new page or a
  frame. To do this, PHP needs to be fed 'header(Content-type:
  image/jpeg)'. This can be put more or less anywhere in the very short
  script used for showing the jpeg and works. However, if I try to put any
  more html code into the script, i.e. 'print html';, print 'body';
  etc, *anywhere*, I get a headers already sent error.

 You can not put any html code with image code.
 If you send some html you mean to send
 header(Content-Type: text/html)
 with
 header(Content-type: image/jpeg)
 Where do you want go to ?
 
 You can do so:
 There is on the page http://xxx/user.html?name=smith some html code where a user can 
act.
 Among the html code you insert img src=http://xxx/userfoto.html?name=smith;
 On http://xxx/userfoto.html you send  header(Content-type: image/jpeg) and the
 image content and no html code.

This fscking well works!!! It works with frames (one frame can be
hidden) and it works with pages.

I would *never* have had the intelligence to have found this out for
myself, well maybe it woould have taken me a month.

Krzysztof and php-general, I love you all like brothers.

Best,

Tony

-- 

Tony Earnshaw

Cricketers are strange people. They wake up
in October, only to find that their wives had
left them in May.

e-post: [EMAIL PROTECTED]
www:http://www.billy.demon.nl





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Redirect Problem

2002-11-15 Thread Marek Kilimajer
the header, to be http compliant,  should be
Location: 
http://$HTTP_HOST$PHP_SELF?submit_cat=1submit_subcat=1cat_id=$cat_id
also try echoing it instead to see if there is no error. Another thing 
is that exploder has a stupid
habit of thinking of anything starting with  to be a html entity even 
without trailing semicomma
(but not sure if this happens to the headers too), and sub; just 
happens to be one.

 Nilaab wrote:

Ok, I have a problem with the header() redirect function, below is the
part-code/part-pseudocode information. The file that this code is
encapsulated in is a single file named add_item.php. There is no output
before the header() function. Now this is a weird one, but I did some
testing and here is what happens:

If there are no rows returned, redirect browser to the same page with some
needed get variables. The problem is with the submit_cat=1 get variable
attached to the URL-to-be-redirected. When I take this out of the get
string, the script redirects the user just fine when the value of
$num_rows=0. I still need that variable to be sent so when I place the
submit_cat=1 variable back into the get string it takes you to the default
Apache error page entitled, Internal Server Error. Why is this submit_cat
variable causing me so much trouble?

?php

if (this) {
	.
	.
	.
} elseif (something) {
	.
	.
	.
} elseif (something_else) {

  if ($num_rows == 0) {
  header(Location:
$PHP_SELF?submit_cat=1submit_subcat=1cat_id=$cat_id);
  exit;
  } elseif ($num_rows != 0) {
  $row = $db-fetch_results($query);
	.
	.
	.
  }
}

?

- Nilaab


 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] parse comma delimited file

2002-11-15 Thread Marek Kilimajer
yes, there is this fgetcsv function

Greg wrote:


Hi-\
Is there an easy way in PHP to parse a comma delimited text file that could
be uploaded in a form?  Thanks!
-Greg



 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Need difficult help !

2002-11-15 Thread Hacook
Hi all,
I have a very long charachter chain which is like that :

Number*link*name*Number*link*name*Number*link*name*Number*link*name*

I made a php script to cut it thanks to the * to make a list with a
number, and the name hyperlinked to the link.
The thing is that after i get a data (number, link or name), i use
str_replace to cut it off the chain to get the next one.
But as my numbers are sometime the same, i have troubles because it cuts all
the same numbers off.
Can i just cut one ?
Thanks a lot for reading me and maybe answer me ? :-)



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Finding last entry in MySQL database

2002-11-15 Thread Marek Kilimajer
better would be to keep it in a session variable, so people don't spoof it.

M.A.Bond wrote:


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
it onto the next screen via a hidden variable in the form or via the url.

Mark


-Original Message-
From: Tim Thorburn [mailto:immortal;nwconx.net] 
Sent: 15 November 2002 10:11
To: [EMAIL PROTECTED]
Subject: [PHP] Finding last entry in MySQL database


Hi,

I'm creating a form which will allow individuals to add themselves to an 
online database and ask if they'd like to upload a picture.  I have the 
form setup which allows the individuals to add themselves - currently it 
asks if they have a picture to upload (a yes or no drop menu).  On the 
screen after the individual adds them self, I'd like to check the database 
for the last entry (the one just made) and then see if the picture column 
has a yes or a no stored.

What I don't know is how to select the last entry in a database ... I'm 
sure its something very simple, but with being up until 5am working on this 
site - it's slipped by caffeine powered brain.

Thanks
-Tim



 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] PHP Database

2002-11-15 Thread Jason Wong
On Friday 15 November 2002 14:00, Steven Priddy wrote:
 I am looking into how I can make a database like this one that is MySql
 controlled. 

With a lot of hard work I would say.

 http://www.uhlfans.com/uhlstats/ That is one of my partners
 sites but the guy that created the database can't or won't tell me how to
 build one myself for a different subject. Thanks for your help!

Without knowing what your level of knowledge is and exactly what you're 
expecting as an answer it's very difficult to give you much help.

 - Do you want a step by step guide? (You've come to the wrong place!)

 - Do you want some help on general database design? (Search for some database 
design and sql tutorials).

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *

/*
Volley Theory:
It is better to have lobbed and lost than never to have lobbed at all.
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Need difficult help !

2002-11-15 Thread Ewout de Boer
You could try something like this:


$verylongstring
$data = ... // your cut function
$verylongstring = substr($verylongstring, strln($data);



regards,

Ewout de Boer

- Original Message -
From: Hacook [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 11:39 AM
Subject: [PHP] Need difficult help !


 Hi all,
 I have a very long charachter chain which is like that :

 Number*link*name*Number*link*name*Number*link*name*Number*link*name*

 I made a php script to cut it thanks to the * to make a list with a
 number, and the name hyperlinked to the link.
 The thing is that after i get a data (number, link or name), i use
 str_replace to cut it off the chain to get the next one.
 But as my numbers are sometime the same, i have troubles because it cuts
all
 the same numbers off.
 Can i just cut one ?
 Thanks a lot for reading me and maybe answer me ? :-)



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Need difficult help !

2002-11-15 Thread Jason Wong
On Friday 15 November 2002 18:39, Hacook wrote:
 Hi all,
 I have a very long charachter chain which is like that :

 Number*link*name*Number*link*name*Number*link*name*Number*link*name*

 I made a php script to cut it thanks to the * to make a list with a
 number, and the name hyperlinked to the link.
 The thing is that after i get a data (number, link or name), i use
 str_replace to cut it off the chain to get the next one.
 But as my numbers are sometime the same, i have troubles because it cuts
 all the same numbers off.
 Can i just cut one ?
 Thanks a lot for reading me and maybe answer me ? :-)

One way to do this: (Untested, use with extreme caution)
---
  $pieces = explode('*', $long_character_chain);

  while (!empty($pieces)) {
$number = array_shift($pieces);
$link = array_shift($pieces);
$name = array_shift($pieces);
// do whatever you need to make your link
  }
---
-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *

/*
Most people have two reasons for doing anything -- a good reason, and
the real reason.
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Need difficult help !

2002-11-15 Thread Lauri Jakku

Or you could use hash instead of string to store data. 

Hashes work basicly like arrays but you can use string as key/index value
and assosiate it with another string.

And if you like to give that hash ie. as parameter to a another
php-script, one could use:

$param = serialise($myHash);

...

$hash = unserialise($param); 

.. you got the idea ? :)


On Fri, 15 Nov 2002, Ewout de Boer wrote:

 You could try something like this:
 
 
 $verylongstring
 $data = ... // your cut function
 $verylongstring = substr($verylongstring, strln($data);
 
 
 
 regards,
 
 Ewout de Boer
 
 - Original Message -
 From: Hacook [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Friday, November 15, 2002 11:39 AM
 Subject: [PHP] Need difficult help !
 
 
  Hi all,
  I have a very long charachter chain which is like that :
 
  Number*link*name*Number*link*name*Number*link*name*Number*link*name*
 
  I made a php script to cut it thanks to the * to make a list with a
  number, and the name hyperlinked to the link.
  The thing is that after i get a data (number, link or name), i use
  str_replace to cut it off the chain to get the next one.
  But as my numbers are sometime the same, i have troubles because it cuts
 all
  the same numbers off.
  Can i just cut one ?
  Thanks a lot for reading me and maybe answer me ? :-)
 
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 
 
 
 

-- 
Lauri Jakku [ lauridotjakkuatwapicedotcom ] \-^-/  .- Idiots try to maintain
Tel : +358 40 823 6353 / +358 6  321 6159  ( o o )order, We can control
Addr: Ahventie 22-24 N 150/1, 62500 Vaasa   _o00o___o00o_ chaos. { nospam.org }
http://www.wapice.com/~lauri/gnupg.key.asc


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] how to generate ms-word files

2002-11-15 Thread Manuel Lemos
Hello,

On 11/14/2002 02:17 PM, Tom Woody wrote:

http://sourceforge.net/projects/php-doc-xls-gen/


This project doesn't seem to do anything.


--

Regards,
Manuel Lemos


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] PHP Database

2002-11-15 Thread Marek Kilimajer
You need to understand the relations between the entities in order to 
design the database, there
are 3 types:
1 to 1:
   - one team has one couch, no team has more couches and no couch has 
more teams.
   - usually in one table (team_name, couch_name), but might be also in 
two interconnected
   with keys (team_id, team_name)(team_id, couch_name)
1 to many:
   - one team has more players, but every playes has only one team
   - two tables interconnected with key (team_id, team_name)(player_id, 
team_id, player_name)
many to many:
   - each team plays with more team (this is many to many, but 
references to the same table, better
   example would be mailing lists and subscribers, lists have many 
subscribers and subscribers might
   participate in more mailing lists)
   - this is done using another table holding multiple references, but 
might hold also additional information
   (domestic_team_id, host_team_id, dom_team_score, host_team_score, 
match_date)

this is about design, but you have to make it yourself, I don't know 
about it much
  

Steven Priddy wrote:

I am looking into how I can make a database like this one that is MySql
controlled. http://www.uhlfans.com/uhlstats/ That is one of my partners
sites but the guy that created the database can't or won't tell me how to
build one myself for a different subject. Thanks for your help!



 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Need difficult help !

2002-11-15 Thread Hacook
Thanks for all but i found a way to do it !
Regards


 Or you could use hash instead of string to store data.

 Hashes work basicly like arrays but you can use string as key/index value
 and assosiate it with another string.

 And if you like to give that hash ie. as parameter to a another
 php-script, one could use:

 $param = serialise($myHash);

 ...

 $hash = unserialise($param);

 .. you got the idea ? :)


 On Fri, 15 Nov 2002, Ewout de Boer wrote:

  You could try something like this:
 
 
  $verylongstring
  $data = ... // your cut function
  $verylongstring = substr($verylongstring, strln($data);
 
 
 
  regards,
 
  Ewout de Boer
 
  - Original Message -
  From: Hacook [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Friday, November 15, 2002 11:39 AM
  Subject: [PHP] Need difficult help !
 
 
   Hi all,
   I have a very long charachter chain which is like that :
  
   Number*link*name*Number*link*name*Number*link*name*Number*link*name*
  
   I made a php script to cut it thanks to the * to make a list with a
   number, and the name hyperlinked to the link.
   The thing is that after i get a data (number, link or name), i use
   str_replace to cut it off the chain to get the next one.
   But as my numbers are sometime the same, i have troubles because it
cuts
  all
   the same numbers off.
   Can i just cut one ?
   Thanks a lot for reading me and maybe answer me ? :-)
  
  
  
   --
   PHP General Mailing List (http://www.php.net/)
   To unsubscribe, visit: http://www.php.net/unsub.php
  
  
  
 
 
 

 --
 Lauri Jakku [ lauridotjakkuatwapicedotcom ] \-^-/  .- Idiots try to
maintain
 Tel : +358 40 823 6353 / +358 6  321 6159  ( o o )order, We can
control
 Addr: Ahventie 22-24 N 150/1, 62500 Vaasa   _o00o___o00o_ chaos. {
nospam.org }
 http://www.wapice.com/~lauri/gnupg.key.asc




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] small php engine

2002-11-15 Thread Marek Kilimajer
So take php sources and remove php functions you won't use ;-)

Maximilian Eberl wrote:


no, it's the normal LAMP stuff.

I already have the webserver, just need to get the PHP engine melted down.

Max

 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] shell_exec problem

2002-11-15 Thread Jason Wong
On Friday 15 November 2002 03:02, Coert Metz wrote:
 Hi everybody

 I have some few problems with the shell_exec command.
 I want to send a fax with hylafax using the sendfax program in linux.
 When I try to do shell_exec (sendfax -n -d faxnumber faxfile) it will

I have a little app which allows someone to enter a number and upload a PDF 
file which gets faxed using sendfax. Works fine here. I'm basically doing the 
same as you are:

  shell_exec(sendfax $OPTIONS -d $DESTINATION $FILE);

 not work I can see in my httpd file that linux only gets the command
 'sendfax' and not the parameters '-n -d .'.

What httpd file? You mean the log? What exactly do you see? Copy-paste the 
line(s).

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *

/*
MMM-MM!!  So THIS is BIO-NEBULATION! 
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Socket help

2002-11-15 Thread Michael Hazelden
Hi all,

I need to set the KEEPALIVE value for a socket ... and just want to be
certain of what I'm seeing.

When I make my initial connection - the default value for the keepalive
seems to be 0 ... does this mean that no TCP keepalives will be sent on the
socket? Or am I doing something wrong?

Thanks for your help,

Michael.

This message has been checked for all known viruses by the MessageLabs Virus Control 
Centre.


*

Notice:  This email is confidential and may contain copyright material of Ocado 
Limited (the Company). Opinions and views expressed in this message may not 
necessarily reflect the opinions and views of the Company.
If you are not the intended recipient, please notify us immediately and delete all 
copies of this message. Please note that it is your responsibility to scan this 
message for viruses.

Company reg. no. 3875000.  Swallowdale Lane, Hemel Hempstead HP2 7PY

*

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] It only prints lines that beggin with a number? I'm on a deadline!

2002-11-15 Thread 1LT John W. Holmes
 $result = mysql_query (SELECT * FROM `data` WHERE categories);

Where categories is what?? You don't have any comparison...

What it's doing is evaluating the column as true or false. Any integer
column  0 will evaluate to true, so that row will be returned. 1A will be
converted to 1, so it'll be returned as true. CD will be converted to
zero, so that row will not be returned...

---John Holmes...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Validating postal codes

2002-11-15 Thread DonPro
Hi,

I'm trying to validate a Canadian postal code.  I've already written a
function; code as follows:

if(!eregi('(^[a-z][0-9][a-z][0-9][a-z][0-9]$)',$form[authpstcode])) {
   $errors[] = 'You must input a valid Canadian postal code (A9A9A9) postal
code if he/she resides in Canada';
   $continue = false;
}

The above works OK if the user enters -- M2M6N6

But fails if the user enters --- M2M 6N6  (note the space between the two
triplets)

I want my function to validate either, i.e., allow a space between the two
triplets but not enforce it.

Any idea on how to modify my test?

Thanks,
Don



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] #color problems

2002-11-15 Thread Adam
Below is a snip of my script. Can't get it to use $test as a color
variable!!
Can anyone help?? I have tried everything i can think of (bar just using a
color value instead of variable).

The context is :: for formatting an XML doc.

$test='#FF';

echo td width=\33%\ bgcolor=\.$test.\;

Any help much appreciated,
Adam.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Validating postal codes

2002-11-15 Thread Michael Hazelden
This is a RTFM situation!!!

instead of just $form[autopstcode] - use str_replace(
,,$form[autopstcode])

(e.g. strip the spaces before validating the triplets)

found in 30 seconds by typing string on PHP site.

-Original Message-
From: DonPro [mailto:donpro;lclcan.com]
Sent: 15 November 2002 14:45
To: php list
Subject: [PHP] Validating postal codes


Hi,

I'm trying to validate a Canadian postal code.  I've already written a
function; code as follows:

if(!eregi('(^[a-z][0-9][a-z][0-9][a-z][0-9]$)',$form[authpstcode])) {
   $errors[] = 'You must input a valid Canadian postal code (A9A9A9) postal
code if he/she resides in Canada';
   $continue = false;
}

The above works OK if the user enters -- M2M6N6

But fails if the user enters --- M2M 6N6  (note the space between the two
triplets)

I want my function to validate either, i.e., allow a space between the two
triplets but not enforce it.

Any idea on how to modify my test?

Thanks,
Don



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


_
This message has been checked for all known viruses by the 
MessageLabs Virus Control Centre.

This message has been checked for all known viruses by the MessageLabs Virus Control 
Centre.


*

Notice:  This email is confidential and may contain copyright material of Ocado 
Limited (the Company). Opinions and views expressed in this message may not 
necessarily reflect the opinions and views of the Company.
If you are not the intended recipient, please notify us immediately and delete all 
copies of this message. Please note that it is your responsibility to scan this 
message for viruses.

Company reg. no. 3875000.  Swallowdale Lane, Hemel Hempstead HP2 7PY

*

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Modifying native Word files

2002-11-15 Thread Chris Boget
I believe you can do this on a Windows box via COM
with the right extensions/software installed.  But can 
you do this on a *nix box?
I need to take a native Word document and modify the
contents (adding/removing text).
If it can be done on a *nix box, could someone point me
to where I can learn more?

Chris


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Validating postal codes

2002-11-15 Thread Marco Tabini
This might work:

if(!eregi('(^[a-z][0-9][a-z] ?[0-9][a-z][0-9]$)',$form[authpstcode])) {
   $errors[] = 'You must input a valid Canadian postal code (A9A9A9) postal
code if he/she resides in Canada';
   $continue = false;
}


Marco
-- 

php|architect - The magazine for PHP Professionals
The monthly worldwide magazine dedicated to PHP programmers

Come visit us at http://www.phparch.com!

On Fri, 2002-11-15 at 09:44, DonPro wrote:
 Hi,
 
 I'm trying to validate a Canadian postal code.  I've already written a
 function; code as follows:
 
 if(!eregi('(^[a-z][0-9][a-z][0-9][a-z][0-9]$)',$form[authpstcode])) {
$errors[] = 'You must input a valid Canadian postal code (A9A9A9) postal
 code if he/she resides in Canada';
$continue = false;
 }
 
 The above works OK if the user enters -- M2M6N6
 
 But fails if the user enters --- M2M 6N6  (note the space between the two
 triplets)
 
 I want my function to validate either, i.e., allow a space between the two
 triplets but not enforce it.
 
 Any idea on how to modify my test?
 
 Thanks,
 Don
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] something like array_walk?

2002-11-15 Thread Khalid El-Kary
hi,

just remove the  from the first argument of array_walk, the function then 
operates on a copy of the array.
this is written in the PHP manual, check there

khalid


_
Add photos to your messages with MSN 8. Get 2 months FREE*. 
http://join.msn.com/?page=features/featuredemail


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Validating postal codes

2002-11-15 Thread Marek Kilimajer
Either you may remove spaces:
$form[authpstcode]=str_replace(' ','',$form[authpstcode])
and then compare
or change your expresion to 
'(^\s*[a-z]\s*[0-9]\s*[a-z]\s*[0-9]\s*[a-z]\s*[0-9]\s*$)'
The first is better as you may put it into database column that is just 
char(6)


DonPro wrote:

Hi,

I'm trying to validate a Canadian postal code.  I've already written a
function; code as follows:

if(!eregi('(^[a-z][0-9][a-z][0-9][a-z][0-9]$)',$form[authpstcode])) {
  $errors[] = 'You must input a valid Canadian postal code (A9A9A9) postal
code if he/she resides in Canada';
  $continue = false;
}

The above works OK if the user enters -- M2M6N6

But fails if the user enters --- M2M 6N6  (note the space between the two
triplets)

I want my function to validate either, i.e., allow a space between the two
triplets but not enforce it.

Any idea on how to modify my test?

Thanks,
Don



 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] problemde connection informix

2002-11-15 Thread Matthieu Le Corre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Suite au passage en PHP 4.2.3 ... je n'arrive plus a ne connecter a me bases 
informix 
quelqu'un  a-t-il eu le meme probleme ?
il me renvoir un code informix  -930  
- -- 
   __
 / Matthieu Le Corre
|  Service Informatique
| 
|  Inspection Academique de la Sarthe
|  72000 LE MANS
| 
|  Tel   : 02 43 61 58 91 
|  Mail : [EMAIL PROTECTED]
 \
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE91RrriQG6YxCcev4RAnn5AKCP8he3s0cCEBjPBMkMqjkLWtGSXACeKCic
L0g6xkZtso9/PJ+o8qUhmgU=
=AScV
-END PGP SIGNATURE-


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] #color problems

2002-11-15 Thread Marek Kilimajer
Do you mean it doesn't output the right html (which it should if you 
pasted it right, look at the html source)
or the browser doesn't display it (bgcolor in td is **deprecated, what 
doctype are you using?)

Adam wrote:

Below is a snip of my script. Can't get it to use $test as a color
variable!!
Can anyone help?? I have tried everything i can think of (bar just using a
color value instead of variable).

The context is :: for formatting an XML doc.

$test='#FF';

echo td width=\33%\ bgcolor=\.$test.\;

Any help much appreciated,
Adam.


 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] problemde connection informix

2002-11-15 Thread Matthieu Le Corre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

arf sorry for that  i'm also on a fr php list ;)


in fact  my problem is the following :
i upgrade to PHP 4.2.3 and I can't connect to my informix DB anymore
i got a -930 error code (from informix )
is there any one with the same pb ?




Le Vendredi 15 Novembre 2002 16:03, Matthieu Le Corre a écrit :
 Suite au passage en PHP 4.2.3 ... je n'arrive plus a ne connecter a me
 bases informix 
 quelqu'un  a-t-il eu le meme probleme ?
 il me renvoir un code informix  -930

- -- 
   __
 / Matthieu Le Corre
|  Service Informatique
| 
|  Inspection Academique de la Sarthe
|  72000 LE MANS
| 
|  Tel   : 02 43 61 58 91 
|  Mail : [EMAIL PROTECTED]
 \
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE91Rv+iQG6YxCcev4RAryzAKCl0DPJ1Twy9kIwqNkapF61cYjqXACgkHhY
xM2n/z7eXUzVb9h1MQs4+kw=
=5mIM
-END PGP SIGNATURE-


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Fw: [PHP] #color problems

2002-11-15 Thread Adam

Re: below, i put in

global $test;


 Thanks for the advice... I am new to PHP, but have done a lot of C in the
 past so some things are familiar.

 Anyway, I tried your suggestion but no joy... color does not show, as if i
 had written bgcolor=.

 Any ideas???

 Cheers,
 Adam.

 - Original Message -
 From: Marco Tabini [EMAIL PROTECTED]
 To: Adam [EMAIL PROTECTED]
 Sent: Friday, November 15, 2002 2:47 PM
 Subject: Re: [PHP] #color problems


  Since you're not substituting anything in your string, you can use
  single quotes and make it a bit more readable:
 
  $test='#FF';
 
  echo 'td width=33% bgcolor=' . $test . '';
 
 
  is $test defined in the same context as your echo statement (e.g. is the
  echo in a function and $test outside of it)? In that case, you need to
  add $test to your function's context by means of global $test;
 
  Marco
  --
  
  php|architect - The magazine for PHP Professionals
  The monthly worldwide magazine dedicated to PHP programmers
 
  Come visit us at http://www.phparch.com!
 
 
  On Fri, 2002-11-15 at 10:13, Adam wrote:
   Below is a snip of my script. Can't get it to use $test as a color
   variable!!
   Can anyone help?? I have tried everything i can think of (bar just
using
 a
   color value instead of variable).
  
   The context is :: for formatting an XML doc.
  
   $test='#FF';
  
   echo td width=\33%\ bgcolor=\.$test.\;
  
   Any help much appreciated,
   Adam.
  
  
   --
   PHP General Mailing List (http://www.php.net/)
   To unsubscribe, visit: http://www.php.net/unsub.php
  
 
 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: Fw: [PHP] #color problems

2002-11-15 Thread Marco Tabini
Does your color code show in the HTML source code? If so, then it's an
HTML problem!

Marco


On Fri, 2002-11-15 at 10:46, Adam wrote:
 
 Re: below, i put in
 
 global $test;
 
 
  Thanks for the advice... I am new to PHP, but have done a lot of C in the
  past so some things are familiar.
 
  Anyway, I tried your suggestion but no joy... color does not show, as if i
  had written bgcolor=.
 
  Any ideas???
 
  Cheers,
  Adam.
 
  - Original Message -
  From: Marco Tabini [EMAIL PROTECTED]
  To: Adam [EMAIL PROTECTED]
  Sent: Friday, November 15, 2002 2:47 PM
  Subject: Re: [PHP] #color problems
 
 
   Since you're not substituting anything in your string, you can use
   single quotes and make it a bit more readable:
  
   $test='#FF';
  
   echo 'td width=33% bgcolor=' . $test . '';
  
  
   is $test defined in the same context as your echo statement (e.g. is the
   echo in a function and $test outside of it)? In that case, you need to
   add $test to your function's context by means of global $test;
  
   Marco
   --
   
   php|architect - The magazine for PHP Professionals
   The monthly worldwide magazine dedicated to PHP programmers
  
   Come visit us at http://www.phparch.com!
  
  
   On Fri, 2002-11-15 at 10:13, Adam wrote:
Below is a snip of my script. Can't get it to use $test as a color
variable!!
Can anyone help?? I have tried everything i can think of (bar just
 using
  a
color value instead of variable).
   
The context is :: for formatting an XML doc.
   
$test='#FF';
   
echo td width=\33%\ bgcolor=\.$test.\;
   
Any help much appreciated,
Adam.
   
   
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
   
  
  
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] How to break a while loop ?

2002-11-15 Thread Hacook
Hi all,
I made a while loop and i'd like to know the comand to break it from inside.
Here is my script :

while ($michou=$maxFiles){
/// My script  and ate the end :
if ($michou$michoumax) {
break;
}
}

But it doesnt work
Can i put 2 conditions in the while() command ? if yes, what is the
structure ?
Thanks,
hacook



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] php Wildcard???

2002-11-15 Thread vernon
Hey all, I'm coming over from programming ASP in VBScript and I know that a
wildcard there is '%' can anyone tell me what it is in PHP? Thanks.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] How to break a while loop ?

2002-11-15 Thread Ernest E Vogelsinger
At 16:22 15.11.2002, Hacook spoke out and said:
[snip]
Hi all,
I made a while loop and i'd like to know the comand to break it from inside.
Here is my script :

while ($michou=$maxFiles){
/// My script  and ate the end :
if ($michou$michoumax) {
break;
}
}

But it doesnt work

If it doesn't work, $michou doesn't ever become  $michoumax. Check if
you're either incrementing $michou, or decrementing $michoumax correctly.

Can i put 2 conditions in the while() command ? if yes, what is the
structure ?

Yes you can:

while (expr1  expr2) {}
will loop as long BOTH expressions are true

while (expr1 || expr2) {}
will loop as long ONE OF BOTH expressions is true

You can of course put more than two expression in the while condition. If
you're using or, expression evaluation will stop when the first exression
returns true. For and, the evaluation will stop as soon as a n expression
returns false.

The fact that not all expressions are necessarily evaluated every time
needs to be considered if the expressions have side effects.


-- 
   O Ernest E. Vogelsinger 
   (\) ICQ #13394035 
^ http://www.vogelsinger.at/



Re: Fw: [PHP] #color problems

2002-11-15 Thread Adam
OK, color code is not present in HTML output. Very strange!
echo $test; produces hte correct output though.

Adam.

- Original Message -
From: Marco Tabini [EMAIL PROTECTED]
To: Adam [EMAIL PROTECTED]
Cc: PHP [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 3:14 PM
Subject: Re: Fw: [PHP] #color problems


 Does your color code show in the HTML source code? If so, then it's an
 HTML problem!

 Marco


 On Fri, 2002-11-15 at 10:46, Adam wrote:
 
  Re: below, i put in
 
  global $test;
 
 
   Thanks for the advice... I am new to PHP, but have done a lot of C in
the
   past so some things are familiar.
  
   Anyway, I tried your suggestion but no joy... color does not show, as
if i
   had written bgcolor=.
  
   Any ideas???
  
   Cheers,
   Adam.
  
   - Original Message -
   From: Marco Tabini [EMAIL PROTECTED]
   To: Adam [EMAIL PROTECTED]
   Sent: Friday, November 15, 2002 2:47 PM
   Subject: Re: [PHP] #color problems
  
  
Since you're not substituting anything in your string, you can use
single quotes and make it a bit more readable:
   
$test='#FF';
   
echo 'td width=33% bgcolor=' . $test . '';
   
   
is $test defined in the same context as your echo statement (e.g. is
the
echo in a function and $test outside of it)? In that case, you need
to
add $test to your function's context by means of global $test;
   
Marco
--

php|architect - The magazine for PHP Professionals
The monthly worldwide magazine dedicated to PHP programmers
   
Come visit us at http://www.phparch.com!
   
   
On Fri, 2002-11-15 at 10:13, Adam wrote:
 Below is a snip of my script. Can't get it to use $test as a color
 variable!!
 Can anyone help?? I have tried everything i can think of (bar just
  using
   a
 color value instead of variable).

 The context is :: for formatting an XML doc.

 $test='#FF';

 echo td width=\33%\ bgcolor=\.$test.\;

 Any help much appreciated,
 Adam.


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php

   
   
  
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] How to break a while loop ?

2002-11-15 Thread Tony Earnshaw
fre, 2002-11-15 kl. 16:22 skrev Hacook:

 I made a while loop and i'd like to know the comand to break it from inside.
 Here is my script :
 
 while ($michou=$maxFiles){
 /// My script  and ate the end :
 if ($michou$michoumax) {
 break;
 }
 }
 
 But it doesnt work
 Can i put 2 conditions in the while() command ? if yes, what is the
 structure ?
 Thanks,
 hacook

'if/continue' instead of 'if/break'? I wondered what it was doing in
alien code today, so I looked it up.

Best,

Tony

-- 

Tony Earnshaw

Cricketers are strange people. They wake up
in October, only to find that their wives had
left them in May.

e-post: [EMAIL PROTECTED]
www:http://www.billy.demon.nl





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] longitude/latitude function

2002-11-15 Thread Edward Peloke
Has anyone ever written a php function to take the longitude and latitude of
two destinations and calculate the distance?

I am working on one but the output is just a little off.

Thanks,
Eddie


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] php Wildcard???

2002-11-15 Thread Michael Hazelden
Wildcard for what? 

Please be more specific ... do you mean database queries ... regular
expressions ... what?

Thanks.

-Original Message-
From: vernon [mailto:vernon;comp-wiz.com]
Sent: 15 November 2002 15:32
To: [EMAIL PROTECTED]
Subject: [PHP] php Wildcard???


Hey all, I'm coming over from programming ASP in VBScript and I know that a
wildcard there is '%' can anyone tell me what it is in PHP? Thanks.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


_
This message has been checked for all known viruses by the 
MessageLabs Virus Control Centre.

This message has been checked for all known viruses by the MessageLabs Virus Control 
Centre.


*

Notice:  This email is confidential and may contain copyright material of Ocado 
Limited (the Company). Opinions and views expressed in this message may not 
necessarily reflect the opinions and views of the Company.
If you are not the intended recipient, please notify us immediately and delete all 
copies of this message. Please note that it is your responsibility to scan this 
message for viruses.

Company reg. no. 3875000.  Swallowdale Lane, Hemel Hempstead HP2 7PY

*

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: Fw: [PHP] #color problems

2002-11-15 Thread Marek Kilimajer
I you did put
echo $test;
right before echo 'td width=33% bgcolor=' . $test . '';
COPYPASTE your code (don't write it from memory!) and show us

Adam wrote:


OK, color code is not present in HTML output. Very strange!
echo $test; produces hte correct output though.

Adam.

- Original Message -
From: Marco Tabini [EMAIL PROTECTED]
To: Adam [EMAIL PROTECTED]
Cc: PHP [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 3:14 PM
Subject: Re: Fw: [PHP] #color problems


 

Does your color code show in the HTML source code? If so, then it's an
HTML problem!

Marco


On Fri, 2002-11-15 at 10:46, Adam wrote:
   

Re: below, i put in

global $test;


 

Thanks for the advice... I am new to PHP, but have done a lot of C in
   

the
 

past so some things are familiar.

Anyway, I tried your suggestion but no joy... color does not show, as
   

if i
 

had written bgcolor=.

Any ideas???

Cheers,
Adam.

- Original Message -
From: Marco Tabini [EMAIL PROTECTED]
To: Adam [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 2:47 PM
Subject: Re: [PHP] #color problems


   

Since you're not substituting anything in your string, you can use
single quotes and make it a bit more readable:

$test='#FF';

echo 'td width=33% bgcolor=' . $test . '';


is $test defined in the same context as your echo statement (e.g. is
 

the
 

echo in a function and $test outside of it)? In that case, you need
 

to
 

add $test to your function's context by means of global $test;

Marco
--

php|architect - The magazine for PHP Professionals
The monthly worldwide magazine dedicated to PHP programmers

Come visit us at http://www.phparch.com!


On Fri, 2002-11-15 at 10:13, Adam wrote:
 

Below is a snip of my script. Can't get it to use $test as a color
variable!!
Can anyone help?? I have tried everything i can think of (bar just
   

using
 

a
   

color value instead of variable).

The context is :: for formatting an XML doc.

$test='#FF';

echo td width=\33%\ bgcolor=\.$test.\;

Any help much appreciated,
Adam.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

   

 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

 

   



 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] longitude/latitude function

2002-11-15 Thread Aaron Gould
Try this snippet... I can't vouch for its accuracy since I am not a
mathematician:

?
// Function takes latitude and longitude  of two places as input
// and prints the distance in miles and kms.
function calculateDistance($lat1, $lon1, $lat2, $lon2)
// Convert all the degrees to radians
$lat1 = deg2rad($lat1);
$lon1 = deg2rad($lon1);
$lat2 = deg2rad($lat2);
$lon2 = deg2rad($lon2);

// Find the deltas
$delta_lat = $lat2 - $lat1;
$delta_lon = $lon2 - $lon1;

// Find the Great Circle distance
$temp = pow(sin($delta_lat / 2.0), 2) + cos($lat1) * cos($lat2) *
pow(sin($delta_lon / 2.0), 2);

$EARTH_RADIUS = 3956;

$distance = ($EARTH_RADIUS * 2 * atan2(sqrt($temp), sqrt(1 - $temp)) *
1.6093);

return $distance;
}
?


--
Aaron Gould
[EMAIL PROTECTED]
Web Developer
Parts Canada


- Original Message -
From: Edward Peloke [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 11:20 AM
Subject: [PHP] longitude/latitude function


 Has anyone ever written a php function to take the longitude and latitude
of
 two destinations and calculate the distance?

 I am working on one but the output is just a little off.

 Thanks,
 Eddie


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] php Wildcard???

2002-11-15 Thread Ewout de Boer
You mean the opening tag ?

For php use ?php  {code here} ?


regards,

Ewout de Boer

- Original Message -
From: vernon [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 4:32 PM
Subject: [PHP] php Wildcard???


 Hey all, I'm coming over from programming ASP in VBScript and I know that
a
 wildcard there is '%' can anyone tell me what it is in PHP? Thanks.



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Need difficult help !

2002-11-15 Thread Ewout de Boer
Oops !

My mistake.. it's strlen()

substr = substring .. see http://www.php.net/substr


regards,

Ewout de Boer


On Fri, Nov 15, 2002 at 12:03:34PM +0100, Tristan Carron wrote:
 The strln() function is unknown...
 To understand the script, could you please tell me what the substr()
 function does ?
 Thanks a lot,
 Hacook
 
 - Original Message -
 From: Ewout de Boer [EMAIL PROTECTED]
 To: Hacook [EMAIL PROTECTED]
 Cc: PHP General [EMAIL PROTECTED]
 Sent: Friday, November 15, 2002 11:59 AM
 Subject: Re: [PHP] Need difficult help !
 
 
  You could try something like this:
 
 
  $verylongstring
  $data = ... // your cut function
  $verylongstring = substr($verylongstring, strln($data);
 
 
 
  regards,
 
  Ewout de Boer
 
  - Original Message -
  From: Hacook [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Friday, November 15, 2002 11:39 AM
  Subject: [PHP] Need difficult help !
 
 
   Hi all,
   I have a very long charachter chain which is like that :
  
   Number*link*name*Number*link*name*Number*link*name*Number*link*name*
  
   I made a php script to cut it thanks to the * to make a list with a
   number, and the name hyperlinked to the link.
   The thing is that after i get a data (number, link or name), i use
   str_replace to cut it off the chain to get the next one.
   But as my numbers are sometime the same, i have troubles because it cuts
  all
   the same numbers off.
   Can i just cut one ?
   Thanks a lot for reading me and maybe answer me ? :-)
  
  
  
   --
   PHP General Mailing List (http://www.php.net/)
   To unsubscribe, visit: http://www.php.net/unsub.php
  
  
  
 
 
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] longitude/latitude function

2002-11-15 Thread Edward Peloke
Thanks Aaron,

If you don't mind me asking, where did you get it?  It seems to give a
better answer than my function.

Thanks!
Eddie

-Original Message-
From: Aaron Gould [mailto:webdevel;partscanada.com]
Sent: Friday, November 15, 2002 11:04 AM
To: Edward Peloke; [EMAIL PROTECTED]
Subject: Re: [PHP] longitude/latitude function


Try this snippet... I can't vouch for its accuracy since I am not a
mathematician:

?
// Function takes latitude and longitude  of two places as input
// and prints the distance in miles and kms.
function calculateDistance($lat1, $lon1, $lat2, $lon2)
// Convert all the degrees to radians
$lat1 = deg2rad($lat1);
$lon1 = deg2rad($lon1);
$lat2 = deg2rad($lat2);
$lon2 = deg2rad($lon2);

// Find the deltas
$delta_lat = $lat2 - $lat1;
$delta_lon = $lon2 - $lon1;

// Find the Great Circle distance
$temp = pow(sin($delta_lat / 2.0), 2) + cos($lat1) * cos($lat2) *
pow(sin($delta_lon / 2.0), 2);

$EARTH_RADIUS = 3956;

$distance = ($EARTH_RADIUS * 2 * atan2(sqrt($temp), sqrt(1 - $temp)) *
1.6093);

return $distance;
}
?


--
Aaron Gould
[EMAIL PROTECTED]
Web Developer
Parts Canada


- Original Message -
From: Edward Peloke [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 11:20 AM
Subject: [PHP] longitude/latitude function


 Has anyone ever written a php function to take the longitude and latitude
of
 two destinations and calculate the distance?

 I am working on one but the output is just a little off.

 Thanks,
 Eddie


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] I'm in need of a PHP web host recommendation

2002-11-15 Thread Phil Schwarzmann
I am quite unhappy with my current web host provider
(www.infinitehost.com http://www.infinitehost.com/ ) and would like to
hear some recommendations of some good companies that host PHP/MySQL and
also JSP.  I'm more than happy to shell out a few extra bucks to get
some good service.
 
Currently I pay $25/month for 100MB of space.  Infinitehost is a just a
mom-and-pop hosting company.  They'll take up for 4-5 days to respond to
one e-mail, my site is down frequently and they haven't lived up to
their guarantees.  I'm sick and tired of it.
 
Thanks so much for your recommendations!!



Re: [PHP] GD 1.5

2002-11-15 Thread Mako Shark
 Why do you need 1.5?

Isn't that the one with GIF support on it?

__
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] GD 1.5

2002-11-15 Thread Rasmus Lerdorf
Look around a bit.  All versions of GD can be found with gif support.

On Fri, 15 Nov 2002, Mako Shark wrote:

  Why do you need 1.5?

 Isn't that the one with GIF support on it?

 __
 Do you Yahoo!?
 Yahoo! Web Hosting - Let the expert host your site
 http://webhosting.yahoo.com

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] I'm in need of a PHP web host recommendation

2002-11-15 Thread Jon Haworth
Hi Phil,

 would like to hear some recommendations of some 
 good companies that host PHP/MySQL and also JSP.  

http://34sp.com/ are great if you don't mind .uk-based hosting. I've heard
good things about http://oneandone.co.uk/ but haven't used them myself.

At the other end of the scale, you should stay *well* away from
http://zenithtech.com/ - they're without a doubt the worst host I've ever
used.

Cheers
Jon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Ereg headache

2002-11-15 Thread Mako Shark
I have a real problem that I can't seem to figure out.
I need an ereg pattern to search for a certain string
(below). All this is being shelled to a Unix grep
command because I'm looking this up in very many
files.

I've made myself a INPUT TYPE=HIDDEN tag that
contains in the value attribute a list of
comma-delimited numbers. I need to find if a certain
number is in these tags (and each file contains one
tag). I need an ereg statement that will let me search
these lines to see if a number exists, obviously in
the beginning or the end or the middle or if it's the
only number in the list. Here's what I mean (searching
for number 1):

INPUT TYPE = HIDDEN NAME = numbers VALUE =
1,2,3,4,5   //beginning

INPUT TYPE = HIDDEN NAME = numbers VALUE =
0,1,2,3,4,5   //middle

INPUT TYPE = HIDDEN NAME = numbers VALUE =
5,4,3,2,1   //end

INPUT TYPE = HIDDEN NAME = numbers VALUE = 1  
 //only

This is frustrating me, because each solution I come
up with doesn't work. Here is my grep/ereg statement
so far:

$commanumberbeginning = [[0-9]+,]*; //this allows 0
or more numbers before it, and if there are any, they
must have 1 or more digits followed by a comma

$commanumberend = [,[0-9]+]*; // this allows 0 or
more numbers after it, and if there are any, they must
have a comma followed by 1 or more digits

$ereg-statement=$commanumberbeginning .
$numbertosearchfor . $commanumberbeginning;
//$numbertosearchfor will be obtained through a select
control in a form

grep 'INPUT TYPE = HIDDEN NAME = numbers VALUE =
$ereg-statement' *.html

This problem is kicking my butt. Any help?

__
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] longitude/latitude function

2002-11-15 Thread Aaron Gould
I got that from http://freshmeat.net/projects/zipdy/?topic_id=66.  It's a
program called Zipdy that does these calculations.  There's also a similar
function on the US government census site (can't remember where though), but
I liked Zipdy's better.

--
Aaron Gould
[EMAIL PROTECTED]
Web Developer
Parts Canada


- Original Message -
From: Edward Peloke [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 11:55 AM
Subject: RE: [PHP] longitude/latitude function


 Thanks Aaron,

 If you don't mind me asking, where did you get it?  It seems to give a
 better answer than my function.

 Thanks!
 Eddie

 -Original Message-
 From: Aaron Gould [mailto:webdevel;partscanada.com]
 Sent: Friday, November 15, 2002 11:04 AM
 To: Edward Peloke; [EMAIL PROTECTED]
 Subject: Re: [PHP] longitude/latitude function


 Try this snippet... I can't vouch for its accuracy since I am not a
 mathematician:

 ?
 // Function takes latitude and longitude  of two places as input
 // and prints the distance in miles and kms.
 function calculateDistance($lat1, $lon1, $lat2, $lon2)
 // Convert all the degrees to radians
 $lat1 = deg2rad($lat1);
 $lon1 = deg2rad($lon1);
 $lat2 = deg2rad($lat2);
 $lon2 = deg2rad($lon2);

 // Find the deltas
 $delta_lat = $lat2 - $lat1;
 $delta_lon = $lon2 - $lon1;

 // Find the Great Circle distance
 $temp = pow(sin($delta_lat / 2.0), 2) + cos($lat1) * cos($lat2) *
 pow(sin($delta_lon / 2.0), 2);

 $EARTH_RADIUS = 3956;

 $distance = ($EARTH_RADIUS * 2 * atan2(sqrt($temp), sqrt(1 - $temp)) *
 1.6093);

 return $distance;
 }
 ?


 --
 Aaron Gould
 [EMAIL PROTECTED]
 Web Developer
 Parts Canada


 - Original Message -
 From: Edward Peloke [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Friday, November 15, 2002 11:20 AM
 Subject: [PHP] longitude/latitude function


  Has anyone ever written a php function to take the longitude and
latitude
 of
  two destinations and calculate the distance?
 
  I am working on one but the output is just a little off.
 
  Thanks,
  Eddie
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] GD 1.5

2002-11-15 Thread @ Edwin
Hello,

Rasmus Lerdorf [EMAIL PROTECTED] wrote:
 Look around a bit.  All versions of GD can be found with gif support.
 


...but here

  http://www.boutell.com/gd/

it says:
  GD does not create GIF images

Or am I missing something? :)

- E

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] I'm in need of a PHP web host recommendation

2002-11-15 Thread Edward Peloke
http://www.ht-tech.net is who I use, VERY GOOD!  Just tell them I sent you.

Eddie

-Original Message-
From: Jon Haworth [mailto:jhaworth;witanjardine.co.uk]
Sent: Friday, November 15, 2002 11:49 AM
To: 'Phil Schwarzmann'; [EMAIL PROTECTED]
Subject: RE: [PHP] I'm in need of a PHP web host recommendation


Hi Phil,

 would like to hear some recommendations of some 
 good companies that host PHP/MySQL and also JSP.  

http://34sp.com/ are great if you don't mind .uk-based hosting. I've heard
good things about http://oneandone.co.uk/ but haven't used them myself.

At the other end of the scale, you should stay *well* away from
http://zenithtech.com/ - they're without a doubt the worst host I've ever
used.

Cheers
Jon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] longitude/latitude function

2002-11-15 Thread Edward Peloke
Thanks, Just curious because after looking online it seems there are several
ways to do this...many giving a slightly different answer...for example, I
went to mapquest and put in two cities and the mileage was 1500, the
function returned 1700.  Also, the function says it prints in miles and kms
but it only seems to print one of them...do you know which one?  I guess I
should look at the freshmeat site before I bother you with any other
questions.

Thanks again!!!
Eddie

-Original Message-
From: Aaron Gould [mailto:webdevel;partscanada.com]
Sent: Friday, November 15, 2002 11:50 AM
To: Edward Peloke; [EMAIL PROTECTED]
Subject: Re: [PHP] longitude/latitude function


I got that from http://freshmeat.net/projects/zipdy/?topic_id=66.  It's a
program called Zipdy that does these calculations.  There's also a similar
function on the US government census site (can't remember where though), but
I liked Zipdy's better.

--
Aaron Gould
[EMAIL PROTECTED]
Web Developer
Parts Canada


- Original Message -
From: Edward Peloke [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 11:55 AM
Subject: RE: [PHP] longitude/latitude function


 Thanks Aaron,

 If you don't mind me asking, where did you get it?  It seems to give a
 better answer than my function.

 Thanks!
 Eddie

 -Original Message-
 From: Aaron Gould [mailto:webdevel;partscanada.com]
 Sent: Friday, November 15, 2002 11:04 AM
 To: Edward Peloke; [EMAIL PROTECTED]
 Subject: Re: [PHP] longitude/latitude function


 Try this snippet... I can't vouch for its accuracy since I am not a
 mathematician:

 ?
 // Function takes latitude and longitude  of two places as input
 // and prints the distance in miles and kms.
 function calculateDistance($lat1, $lon1, $lat2, $lon2)
 // Convert all the degrees to radians
 $lat1 = deg2rad($lat1);
 $lon1 = deg2rad($lon1);
 $lat2 = deg2rad($lat2);
 $lon2 = deg2rad($lon2);

 // Find the deltas
 $delta_lat = $lat2 - $lat1;
 $delta_lon = $lon2 - $lon1;

 // Find the Great Circle distance
 $temp = pow(sin($delta_lat / 2.0), 2) + cos($lat1) * cos($lat2) *
 pow(sin($delta_lon / 2.0), 2);

 $EARTH_RADIUS = 3956;

 $distance = ($EARTH_RADIUS * 2 * atan2(sqrt($temp), sqrt(1 - $temp)) *
 1.6093);

 return $distance;
 }
 ?


 --
 Aaron Gould
 [EMAIL PROTECTED]
 Web Developer
 Parts Canada


 - Original Message -
 From: Edward Peloke [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Friday, November 15, 2002 11:20 AM
 Subject: [PHP] longitude/latitude function


  Has anyone ever written a php function to take the longitude and
latitude
 of
  two destinations and calculate the distance?
 
  I am working on one but the output is just a little off.
 
  Thanks,
  Eddie
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: Fw: [PHP] #color problems

2002-11-15 Thread @ Edwin
Hello,

Adam [EMAIL PROTECTED] wrote:

 OK, color code is not present in HTML output. Very strange!

What do you exactly mean by color code is not present in HTML output?

...[snip]...

Also,

Anyway, I tried your suggestion but no joy... color does not show,
as
if i had written bgcolor=.

What did you mean by color does not show? A white color will not show on a
white background ;)

- E

...[snip]...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] longitude/latitude function

2002-11-15 Thread jef
Edward:

We use a dealer locator.  I would suggest one thing if you have
a lot of data, hits, namely to pre-calculate the lat/long in
radians and store radians in the database.  This would speed
up the script.

_justin

Edward Peloke wrote:
 
 Thanks Aaron,
 
 If you don't mind me asking, where did you get it?  It seems to give a
 better answer than my function.
 
 Thanks!
 Eddie
 
 -Original Message-
 From: Aaron Gould [mailto:webdevel;partscanada.com]
 Sent: Friday, November 15, 2002 11:04 AM
 To: Edward Peloke; [EMAIL PROTECTED]
 Subject: Re: [PHP] longitude/latitude function
 
 Try this snippet... I can't vouch for its accuracy since I am not a
 mathematician:
 
 ?
 // Function takes latitude and longitude  of two places as input
 // and prints the distance in miles and kms.
 function calculateDistance($lat1, $lon1, $lat2, $lon2)
 // Convert all the degrees to radians
 $lat1 = deg2rad($lat1);
 $lon1 = deg2rad($lon1);
 $lat2 = deg2rad($lat2);
 $lon2 = deg2rad($lon2);
 
 // Find the deltas
 $delta_lat = $lat2 - $lat1;
 $delta_lon = $lon2 - $lon1;
 
 // Find the Great Circle distance
 $temp = pow(sin($delta_lat / 2.0), 2) + cos($lat1) * cos($lat2) *
 pow(sin($delta_lon / 2.0), 2);
 
 $EARTH_RADIUS = 3956;
 
 $distance = ($EARTH_RADIUS * 2 * atan2(sqrt($temp), sqrt(1 - $temp)) *
 1.6093);
 
 return $distance;
 }
 ?
 
 --
 Aaron Gould
 [EMAIL PROTECTED]
 Web Developer
 Parts Canada
 
 - Original Message -
 From: Edward Peloke [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Friday, November 15, 2002 11:20 AM
 Subject: [PHP] longitude/latitude function
 
  Has anyone ever written a php function to take the longitude and latitude
 of
  two destinations and calculate the distance?
 
  I am working on one but the output is just a little off.
 
  Thanks,
  Eddie
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php

-- 
Justin Farnsworth
Eye Integrated Communications
321 South Evans - Suite 203
Greenville, NC 27858 | Tel: (252) 353-0722

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] GD 1.5

2002-11-15 Thread Jason Wong
On Saturday 16 November 2002 00:54, [EMAIL PROTECTED] wrote:
 Hello,

 Rasmus Lerdorf [EMAIL PROTECTED] wrote:
  Look around a bit.  All versions of GD can be found with gif support.

 ...but here

   http://www.boutell.com/gd/

 it says:
   GD does not create GIF images

 Or am I missing something? :)

Look around!

google  gd library with gif support

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *

/*
You have a strong appeal for members of the opposite sex.
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] GD 1.5

2002-11-15 Thread @ Edwin
Hello,

Jason Wong [EMAIL PROTECTED] wrote:

 On Saturday 16 November 2002 00:54, [EMAIL PROTECTED] wrote:
  Hello,
 
  Rasmus Lerdorf [EMAIL PROTECTED] wrote:
   Look around a bit.  All versions of GD can be found with gif support.
 
  ...but here
 
http://www.boutell.com/gd/
 
  it says:
GD does not create GIF images
 
  Or am I missing something? :)

 Look around!

 google  gd library with gif support


Well, I just wanted to say that not *all* support it--esp. , I think, by the
original authors :)

Didn't they remove it from version 1.6? That's why the original poster was
looking for v1.5? (Maybe he's concerned about copyright, etc.)

- E

PS
BTW, of course someone can argue about what the word support implies. You
can just add a patch and it'll support it but that wasn't my point, at
least...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Escaping characters won't work

2002-11-15 Thread @ Edwin
Hello,

Ernest E Vogelsinger [EMAIL PROTECTED] wrote:

 At 23:53 14.11.2002, Lars Espelid said:
 [snip]
 Try to execute this code:
 if (ereg[^0-9], $num))
 print That's not a number!;
 
 result: parsing error, expects ')' on the if-line.

 You forgot an opening bracket, and need to quote the regex, like
 if (ereg('[^0-9]', $num))
 print That's not a number!;


I think I'm missing something here but while the regex might be correct,
don't you think the print ... part is incorrect?

I mean, _negative_ numbers are numbers, no?

Wouldn't it be better just to use is_int() or is_numeric()?

- E

...[snip]...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] GD 1.5

2002-11-15 Thread Jason Wong
On Saturday 16 November 2002 01:34, [EMAIL PROTECTED] wrote:

 Well, I just wanted to say that not *all* support it--esp. , I think, by
 the original authors :)

The official GD library no longer supports GIF ...

 Didn't they remove it from version 1.6? That's why the original poster was
 looking for v1.5? (Maybe he's concerned about copyright, etc.)

... because of patents issues with the some aspects of the GIF format.

If the OP was concerned about such issues then he/she should not be using GIF 
at all!

 PS
 BTW, of course someone can argue about what the word support implies. You
 can just add a patch and it'll support it but that wasn't my point, at
 least...

IIRC the author specifically removed all older versions of GD (those that 
supported GIF). Thus is you're talking 'official' support then GD does not 
support GIF, period, because the older versions aren't supposed to exist 
anymore. So basically if you want GD with GIF you're going have to patch it.

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *

/*
The greatest love is a mother's, then a dog's, then a sweetheart's.
-- Polish proverb
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] GD 1.5

2002-11-15 Thread @ Edwin


Jason Wong [EMAIL PROTECTED] wrote:


 If the OP was concerned about such issues then he/she should not be using
GIF
 at all!

True. You've got a point there.

Anyway, that was just my wild guess...

- E

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] can I retrieve jsp varibable with get or post???

2002-11-15 Thread Jeff Bluemel
Can I utilize java script variables with get or post?  any information on
integrating the 2, and passing info back  forth?

thanks,

Jeff



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: GD 1.5

2002-11-15 Thread Mako Shark
If the OP was concerned about such issues then
he/she should not be using GIF at all!

This is leading me to believe that I can't use GIFs
because of these issues. Is this true? I know now that
Unisys (Unisys?) made a fuss about some compression or
whatever, but someone told me it was still okay to use
old GDs (am I naive? maybe). Is it now considered
piracy to use GIFs at all? Does this mean I have to
switch over to JPGs, even those images that compress
better with GIFs? I just assumed we were still
permitted, what with Jasc and everybody still allowing
it in their products. Is JPEG (or PNG) the way to go?
I hesitate using PNGs since they seem to be the
least-supported out of the 'big three'.

__
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] PHP extensions

2002-11-15 Thread Mako Shark
 Email extension?  Aren't you talking about Manuel
 Lemos' mimemail class?
 It's just an include file that you have in your
 directory structure.

I know some people made reference to a 'really good'
e-mail package out there that did attachments and
stuff that seemed to be the better choice considering
the alternative (the one that comes with PHP). I
wanted to check into it.

__
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] GD 1.5

2002-11-15 Thread @ Edwin
And besides,

I thought, those issues shouldn't apply anyway to versions 1.5 and below.
(Of course, the original author thinks otherwise so I'm not going to argue
that...)

- E


 Jason Wong [EMAIL PROTECTED] wrote:


  If the OP was concerned about such issues then he/she should not be
using
 GIF
  at all!

 True. You've got a point there.

 Anyway, that was just my wild guess...

 - E

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] can I retrieve jsp varibable with get or post???

2002-11-15 Thread Marek Kilimajer
php = javascript
1st way:
script
var var_name= ?= $var_value ?
/script
2nd way:
input type=hidden name=input_name value=?= $input_value ?

javascript = php
1st way:
location='http://server/script.php?var_name=; + js_var_name;
2nd way:
form_name.input_name.value = js_var_name;

hope you get the point :-)

Jeff Bluemel wrote:


Can I utilize java script variables with get or post?  any information on
integrating the 2, and passing info back  forth?

thanks,

Jeff



 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] GD 1.5

2002-11-15 Thread Jason Wong
On Saturday 16 November 2002 03:25, [EMAIL PROTECTED] wrote:
 And besides,

 I thought, those issues shouldn't apply anyway to versions 1.5 and below.
 (Of course, the original author thinks otherwise so I'm not going to argue
 that...)

The patents issue still apply no matter what version you're using. Basically 
you're not allowed to use GIF in anything without a license from Unisys (the 
patent holder).

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *

/*
Maintainer's Motto:
If we can't fix it, it ain't broke.
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Re: GD 1.5

2002-11-15 Thread @ Edwin
Hello,

IANAL, so...

Mako Shark [EMAIL PROTECTED] wrote:

 If the OP was concerned about such issues then
 he/she should not be using GIF at all!

 This is leading me to believe that I can't use GIFs
 because of these issues. Is this true? I know now that
 Unisys (Unisys?) made a fuss about some compression or
 whatever, but someone told me it was still okay to use
 old GDs (am I naive? maybe). Is it now considered
 piracy to use GIFs at all?

Try Google and see what you find out.

 Does this mean I have to
 switch over to JPGs, even those images that compress
 better with GIFs?

No, not really. You can use PNGs instead.

 I just assumed we were still
 permitted, what with Jasc and everybody still allowing
 it in their products. Is JPEG (or PNG) the way to go?

JPEG? Whatever happened to Forgent?

I wish the browsers support JPEG2000--no worries about royalites and/or
license fees. Besides, it's better than JPEG anyway (I mean, image quality
and filesize, etc). Or, maybe, there's something better...

 I hesitate using PNGs since they seem to be the
 least-supported out of the 'big three'.

Not really.

Anyway, I think, this might be of interest:

  http://burnallgifs.org/

or maybe this one:

  http://slashdot.org/articles/02/07/18/157217.shtml?tid=155

- E

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Reasons for error message: Warning: Failed opening'/www/servers/webGNOM/test.php' for inclusion(include_path='.:/usr/local/lib/php') in Unknown on line 0

2002-11-15 Thread Lee P. Reilly
Hi there,

Can someone suggest a reason for the following? I am trying to INCLUDE
the JPGraph libraries in my PHP script as follows:

BEGIN CODE
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
?
/*
___   __  __  ___
   / / | / / __ \/  |/  /
  / / __/  |/ / / / / /|_/ /
 / /_/ / /|  / /_/ / /  / /
 \/_/ |_/\/_/  /_/  sasdap version
   ,+
   | Comments to go here.
   `-
*/

// Include the  PGraph libraries
include (jpgraph.php);
include (jpgraph_log.php);
include (jpgraph_scatter.php);
include (jpgraph_error.php);
include (jpgraph_line.php);

$xData = array(); // holding the R (X) data  
$yData = array(); // holding the P(R) (Y) data
$eData = array(); // holding the error margin data
..
..
..
snip
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
END CODE

My INCLUDE_PATH is set to /usr/local/lib/php, so the 5 INCLUDED scripts
are in there. However, this code results in the following error message:

Warning: Failed opening '/www/servers/webGNOM/test.php' for inclusion
(include_path='.:/usr/local/lib/php') in Unknown on line 0

I also tried changing the include line to
../../../www/server/webGNOM/JpGraph_1.9.2/ blah blah... but that gave me
the same error. Any ideas anyone?

Cheers,
Lee


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] longitude/latitude function

2002-11-15 Thread Aaron Gould
That will be in KM (I'm in Canada).  Just remove the * 1.6093 to return
Miles.
--
Aaron Gould
[EMAIL PROTECTED]
Web Developer
Parts Canada


- Original Message -
From: Edward Peloke [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 12:22 PM
Subject: RE: [PHP] longitude/latitude function


 Thanks, Just curious because after looking online it seems there are
several
 ways to do this...many giving a slightly different answer...for example, I
 went to mapquest and put in two cities and the mileage was 1500, the
 function returned 1700.  Also, the function says it prints in miles and
kms
 but it only seems to print one of them...do you know which one?  I guess I
 should look at the freshmeat site before I bother you with any other
 questions.

 Thanks again!!!
 Eddie

 -Original Message-
 From: Aaron Gould [mailto:webdevel;partscanada.com]
 Sent: Friday, November 15, 2002 11:50 AM
 To: Edward Peloke; [EMAIL PROTECTED]
 Subject: Re: [PHP] longitude/latitude function


 I got that from http://freshmeat.net/projects/zipdy/?topic_id=66.  It's a
 program called Zipdy that does these calculations.  There's also a similar
 function on the US government census site (can't remember where though),
but
 I liked Zipdy's better.

 --
 Aaron Gould
 [EMAIL PROTECTED]
 Web Developer
 Parts Canada


 - Original Message -
 From: Edward Peloke [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Friday, November 15, 2002 11:55 AM
 Subject: RE: [PHP] longitude/latitude function


  Thanks Aaron,
 
  If you don't mind me asking, where did you get it?  It seems to give a
  better answer than my function.
 
  Thanks!
  Eddie
 
  -Original Message-
  From: Aaron Gould [mailto:webdevel;partscanada.com]
  Sent: Friday, November 15, 2002 11:04 AM
  To: Edward Peloke; [EMAIL PROTECTED]
  Subject: Re: [PHP] longitude/latitude function
 
 
  Try this snippet... I can't vouch for its accuracy since I am not a
  mathematician:
 
  ?
  // Function takes latitude and longitude  of two places as input
  // and prints the distance in miles and kms.
  function calculateDistance($lat1, $lon1, $lat2, $lon2)
  // Convert all the degrees to radians
  $lat1 = deg2rad($lat1);
  $lon1 = deg2rad($lon1);
  $lat2 = deg2rad($lat2);
  $lon2 = deg2rad($lon2);
 
  // Find the deltas
  $delta_lat = $lat2 - $lat1;
  $delta_lon = $lon2 - $lon1;
 
  // Find the Great Circle distance
  $temp = pow(sin($delta_lat / 2.0), 2) + cos($lat1) * cos($lat2) *
  pow(sin($delta_lon / 2.0), 2);
 
  $EARTH_RADIUS = 3956;
 
  $distance = ($EARTH_RADIUS * 2 * atan2(sqrt($temp), sqrt(1 - $temp))
*
  1.6093);
 
  return $distance;
  }
  ?
 
 
  --
  Aaron Gould
  [EMAIL PROTECTED]
  Web Developer
  Parts Canada
 
 
  - Original Message -
  From: Edward Peloke [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Friday, November 15, 2002 11:20 AM
  Subject: [PHP] longitude/latitude function
 
 
   Has anyone ever written a php function to take the longitude and
 latitude
  of
   two destinations and calculate the distance?
  
   I am working on one but the output is just a little off.
  
   Thanks,
   Eddie
  
  
   --
   PHP General Mailing List (http://www.php.net/)
   To unsubscribe, visit: http://www.php.net/unsub.php
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] GD 1.5

2002-11-15 Thread @ Edwin

Jason Wong [EMAIL PROTECTED] wrote:

 On Saturday 16 November 2002 03:25, [EMAIL PROTECTED] wrote:
  And besides,
 
  I thought, those issues shouldn't apply anyway to versions 1.5 and
below.
  (Of course, the original author thinks otherwise so I'm not going to
argue
  that...)

 The patents issue still apply no matter what version you're using.
Basically
 you're not allowed to use GIF in anything without a license from Unisys
(the
 patent holder).

This sounds likes a different opinion...

  http://www.rime.com.au/gd/

- E

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Array Searching

2002-11-15 Thread Thomas Weber
Hi,

i have an array like:

Array
(
[1] = Array
(
[alias] = foo
...
)
[2] = Array
(
[alias] = bar
...
)
...
)

I need some way to find out, if an alias foo is in the array. Any idea how
to do this?

Thanks,
Thomas 'Neo' Weber
---
[EMAIL PROTECTED]
[EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Specifying file to send in url...

2002-11-15 Thread Tom Woody
I may be way off base on this, but is it possible to specify a filename
on a url as in...

The user types in http://server/script.php?filetosend=filename.txt

The script.php recieves that file and processes accordingly?  Because
of the way its specified it would be a GET but I am not sure if this is
even possible.

Something tells me I have seen this done before but I am not sure. 
Thanks for any help on this.  I have done some Googling and Archive
search for something related and have come up blank.

-- 
Tom 

Don't throw your computer out the window, 
throw the Windows out of your computer! 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] what else do i need in this upload script?

2002-11-15 Thread Tweak2x
ok, this is upload.php:

form enctype=multipart/form-data action=upload.php method=post
input type=hidden name=MAX_FILE_SIZE value=1000
Send this file: input name=userfile type=file
input type=submit value=Send File
/form


what else do i need to make afile upload?



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] what else do i need in this upload script?

2002-11-15 Thread Van Andel, Robert
This looks fine except the MAX_FILE_SIZE looks rather small.  I had an issue
with it earlier this week and found that the fileI was trying to upload was
larger than the MAX_FILE_SIZE.  I believe this is measured in bytes, so your
file cannot be larger than 1KB.  Are you getting any errors?

Robbert van Andel 

-Original Message-
From: Tweak2x [mailto:Tweak2x;Carolina.rr.com]
Sent: Friday, November 15, 2002 1:05 PM
To: [EMAIL PROTECTED]
Subject: [PHP] what else do i need in this upload script?


ok, this is upload.php:

form enctype=multipart/form-data action=upload.php method=post
input type=hidden name=MAX_FILE_SIZE value=1000
Send this file: input name=userfile type=file
input type=submit value=Send File
/form


what else do i need to make afile upload?



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


 The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from all
computers. 





Re: [PHP] Specifying file to send in url...

2002-11-15 Thread Marco Tabini
Sure you can do it, you can retrieve it in your code as
$_GET['filetosend']. However, you have to be very careful with the
user's input, as someone could pass malicious file names, like
/etc/passwd, which you probably wouldn't want to disclose.

So, unless you impose draconian restrictions and checks--or security is
not a concern... I suggest you think up a different mechanism :=)

Marco
-- 

php|architect - The magazine for PHP Professionals
The first monthly worldwide magazine dedicated to PHP programmers

Come visit us at http://www.phparch.com!

---BeginMessage---
I may be way off base on this, but is it possible to specify a filename
on a url as in...

The user types in http://server/script.php?filetosend=filename.txt

The script.php recieves that file and processes accordingly?  Because
of the way its specified it would be a GET but I am not sure if this is
even possible.

Something tells me I have seen this done before but I am not sure. 
Thanks for any help on this.  I have done some Googling and Archive
search for something related and have come up blank.

-- 
Tom 

Don't throw your computer out the window, 
throw the Windows out of your computer! 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



---End Message---
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] How to show autocad (dwf, dwg) files in browser?

2002-11-15 Thread Lars Espelid
HI,

I have downloaded Volo View Express from www.autodesk.com (plugin to
web-browser) and can see the sample autocad-file that is presented on their
site.

Code ment to display the file drawing1.dwg on my page (none working):
1)
img src=drawing1.dwg
Displays no image.

2)
OBJECT data=drawing1.dwg
type=image/vnd.dwg
A nice drawing.
/OBJECT
The only thing I can see is a blue rectangle whith the following error
message inside it:
Drawing File Format Unrecogr

3)
object
param name=Filename value=drawing1.dwg
embed name=thanks src=drawing1.dwg
pluginspage=http://www.autodesk.com/whip;
/object
The only thing I can see is a blue rectangle whith the following error
message inside it:
Drawing File Format Unrecogr

I'm running Apache 1.3.26.

This is what I have written into httpd.conf:
AddType model/vnd.dwf .dwf
#drawing/x-dwf .dwf
AddType image/vnd.dxf .dxf
AddType image/vnd.dwg .dwg

This is what I have written into mime.types and mime.types.default:
image/vnd.dwg
image/vnd.dxf

Appreciate any help. Thanks


Lars





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Specifying file to send in url...

2002-11-15 Thread Jason Wong
On Saturday 16 November 2002 04:59, Tom Woody wrote:
 I may be way off base on this, but is it possible to specify a filename
 on a url as in...

 The user types in http://server/script.php?filetosend=filename.txt

 The script.php recieves that file and processes accordingly?  Because
 of the way its specified it would be a GET but I am not sure if this is
 even possible.

Do you mean you want to send a _local_ file called filename.txt to the 
_server_ via the URL? If so, then no, it's not possible.

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *

/*
The lymbic system in my brain is so electrically active, it qualifies
 as a third brain.  Normal humans have two brains, left and right.

- Jeff Merkey 
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] what else do i need in this upload script?

2002-11-15 Thread Jason Wong
On Saturday 16 November 2002 05:04, Tweak2x wrote:
 ok, this is upload.php:

 form enctype=multipart/form-data action=upload.php method=post
 input type=hidden name=MAX_FILE_SIZE value=1000
 Send this file: input name=userfile type=file
 input type=submit value=Send File
 /form


 what else do i need to make afile upload?

Why don't just try the example in the manual as someone (I believe) already 
suggested?

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *

/*
Satire is what closes Saturday night.
-- George Kaufman
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Reasons for error message: Warning: Failed opening'/www/servers/webGNOM/test.php' for inclusion(include_path='.:/usr/local/lib/php') in Unknown on line 0

2002-11-15 Thread Tony Earnshaw
fre, 2002-11-15 kl. 20:49 skrev Lee P. Reilly:

 Warning: Failed opening '/www/servers/webGNOM/test.php' for inclusion
 (include_path='.:/usr/local/lib/php') in Unknown on line 0

Permissions? Ownership?

Best,

Tony

-- 

Tony Earnshaw

Cricketers are strange people. They wake up
in October, only to find that their wives had
left them in May.

e-post: [EMAIL PROTECTED]
www:http://www.billy.demon.nl





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Array Searching

2002-11-15 Thread Joel Boonstra
 i have an array like:

 Array
 (
 [1] = Array
 (
 [alias] = foo
 ...
 )
 [2] = Array
 (
 [alias] = bar
 ...
 )
 ...
 )

 I need some way to find out, if an alias foo is in the array. Any idea how
 to do this?

Assuming your outer array is called $array_of_arrays:

?php
$found = 0;
foreach ($array_of_arrays as $array) {
  if ($array['alias'] == 'foo') {
$found = 1;
break;
  }
}
if ($found) {
  // you found it!
}
else {
  // too bad!
}
?

Or, you can look at this:

  http://www.php.net/manual/en/function.in-array.php

if you're not sure what key 'foo' will be at, or this:

  http://www.php.net/manual/en/function.array-search.php

if you're not sure what key 'foo' will be at and you want to know what
that key is.

Joel

-- 
[ joel boonstra | [EMAIL PROTECTED] ]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] How to show autocad (dwf, dwg) files in browser?

2002-11-15 Thread Merritt, Dave
Lars,

You say you downloaded the Volo View Express, but your plug-in page points
to the WHIP viewer plug.  Regardless, there are two versions of Volo View.
Did you download the DWF version only of Volo View?

Dave

-Original Message-
From: Lars Espelid [mailto:lars_espelid;hotmail.com]
Sent: Friday, November 15, 2002 4:09 PM
To: [EMAIL PROTECTED]
Subject: [PHP] How to show autocad (dwf, dwg) files in browser?


HI,

I have downloaded Volo View Express from www.autodesk.com (plugin to
web-browser) and can see the sample autocad-file that is presented on their
site.

Code ment to display the file drawing1.dwg on my page (none working):
1)
img src=drawing1.dwg
Displays no image.

2)
OBJECT data=drawing1.dwg
type=image/vnd.dwg
A nice drawing.
/OBJECT
The only thing I can see is a blue rectangle whith the following error
message inside it:
Drawing File Format Unrecogr

3)
object
param name=Filename value=drawing1.dwg
embed name=thanks src=drawing1.dwg
pluginspage=http://www.autodesk.com/whip;
/object
The only thing I can see is a blue rectangle whith the following error
message inside it:
Drawing File Format Unrecogr

I'm running Apache 1.3.26.

This is what I have written into httpd.conf:
AddType model/vnd.dwf .dwf
#drawing/x-dwf .dwf
AddType image/vnd.dxf .dxf
AddType image/vnd.dwg .dwg

This is what I have written into mime.types and mime.types.default:
image/vnd.dwg
image/vnd.dxf

Appreciate any help. Thanks


Lars





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] xslt question

2002-11-15 Thread Hatem Ben
hey all
I'm using xslt_process(), and noticed that it add a meta just after the
head :

meta http-equiv=Content-Type content=text/html; charset=UTF-8

Where can i change it, or desactivate it ?

thanks
Hatem


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] what else do i need in this upload script?

2002-11-15 Thread tweak2x
it dosnt work for me
- Original Message -
From: Jason Wong [EMAIL PROTECTED]
Newsgroups: php.general
To: [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 4:20 PM
Subject: Re: [PHP] what else do i need in this upload script?


 On Saturday 16 November 2002 05:04, Tweak2x wrote:
  ok, this is upload.php:
 
  form enctype=multipart/form-data action=upload.php method=post
  input type=hidden name=MAX_FILE_SIZE value=1000
  Send this file: input name=userfile type=file
  input type=submit value=Send File
  /form
 
 
  what else do i need to make afile upload?

 Why don't just try the example in the manual as someone (I believe)
already
 suggested?

 --
 Jason Wong - Gremlins Associates - www.gremlins.biz
 Open Source Software Systems Integrators
 * Web Design  Hosting * Internet  Intranet Applications Development *

 /*
 Satire is what closes Saturday night.
 -- George Kaufman
 */




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Javascript + PHP

2002-11-15 Thread SED
I need to finish a project using PHP and JavaScript but the references
for JavaScript I'm using is rather old. I'm looking for a JavaScript
postlist similar to this but without any luck. I have tried Google but
it finds every site containing JavaScript where a postlist is mentioned.
Since there are many pros on this list, maybe someone can point me to a
JavaScript postlist similar to this.

Thanks,
Sumarlidi E. Dadason

SED - Graphic Design
_
Tel: 896-0376, 461-5501
E-mail: [EMAIL PROTECTED]
website: www.sed.is


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Ereg headache

2002-11-15 Thread Gustaf Sjoberg
hi,
this is probably not at all what you want, but i wrote it just in case.

?
function pos1($numbers) {
if ($numbers) {
if ($numbers == '1')
return only;
if (ereg(^1.+, $numbers))
return left;
if (ereg(.+1$, $numbers))
return right;
if (ereg(.+(1).+, $numbers))
return middle;
}
return false;
}
$text = 3, 2, 1, 4;
if pos1($text)
echo pos1($text);
?

if 1 is in the string it will return either middle, left, right or only.. if 
it is not it will return false.

On Fri, 15 Nov 2002 08:49:23 -0800 (PST)
[EMAIL PROTECTED] (Mako Shark) wrote:

I have a real problem that I can't seem to figure out.
I need an ereg pattern to search for a certain string
(below). All this is being shelled to a Unix grep
command because I'm looking this up in very many
files.

I've made myself a INPUT TYPE=HIDDEN tag that
contains in the value attribute a list of
comma-delimited numbers. I need to find if a certain
number is in these tags (and each file contains one
tag). I need an ereg statement that will let me search
these lines to see if a number exists, obviously in
the beginning or the end or the middle or if it's the
only number in the list. Here's what I mean (searching
for number 1):

INPUT TYPE = HIDDEN NAME = numbers VALUE =
1,2,3,4,5   //beginning

INPUT TYPE = HIDDEN NAME = numbers VALUE =
0,1,2,3,4,5   //middle

INPUT TYPE = HIDDEN NAME = numbers VALUE =
5,4,3,2,1   //end

INPUT TYPE = HIDDEN NAME = numbers VALUE = 1  
 //only

This is frustrating me, because each solution I come
up with doesn't work. Here is my grep/ereg statement
so far:

$commanumberbeginning = [[0-9]+,]*; //this allows 0
or more numbers before it, and if there are any, they
must have 1 or more digits followed by a comma

$commanumberend = [,[0-9]+]*; // this allows 0 or
more numbers after it, and if there are any, they must
have a comma followed by 1 or more digits

$ereg-statement=$commanumberbeginning .
$numbertosearchfor . $commanumberbeginning;
//$numbertosearchfor will be obtained through a select
control in a form

grep 'INPUT TYPE = HIDDEN NAME = numbers VALUE =
$ereg-statement' *.html

This problem is kicking my butt. Any help?

__
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] How to show autocad (dwf, dwg) files in browser?

2002-11-15 Thread Lars Espelid

Only my third code-example points to the whip-viewer plug, and that's most
likely wrong. My first and second example may also be wrong, someone know
how to get it right?

I have tried these two viewers:

Volo View Express 2.01.
On this page http://www.autodesk.no/adsk/index/0,,837403-123112,00.html it
says:
DWF-Only Version of Volo View Express. Views only DWF files and does not
view DWG or DXF files.
When I fill out the form and continue, the next page says:
This version should understand DWG, DXFT, and DWF (ePlot and eView) files.
What is right?

WHIP! 4.0
On this page http://www.autodesk.com/cgi-bin/whipreg.pl it says:
you can view and print AutoCAD drawings without using AutoCAD.
On the next page a plug-in is downloaded and I can see a .dwf file in my
browser.

Still, when I try to execute my code to view drawing1.dwg it won't work.

Is my code right, and if it is where can I download a .dwg-plug-in.

regards,

Lars




Dave Merritt [EMAIL PROTECTED] skrev i melding
news:109DB0BF6260D211A1B30008C7A4AA1B129674A4;postoffice.arvinmeritor.com...
 Lars,

 You say you downloaded the Volo View Express, but your plug-in page points
 to the WHIP viewer plug.  Regardless, there are two versions of Volo View.
 Did you download the DWF version only of Volo View?

 Dave

 -Original Message-
 From: Lars Espelid [mailto:lars_espelid;hotmail.com]
 Sent: Friday, November 15, 2002 4:09 PM
 To: [EMAIL PROTECTED]
 Subject: [PHP] How to show autocad (dwf, dwg) files in browser?


 HI,

 I have downloaded Volo View Express from www.autodesk.com (plugin to
 web-browser) and can see the sample autocad-file that is presented on
their
 site.

 Code ment to display the file drawing1.dwg on my page (none working):
 1)
 img src=drawing1.dwg
 Displays no image.

 2)
 OBJECT data=drawing1.dwg
 type=image/vnd.dwg
 A nice drawing.
 /OBJECT
 The only thing I can see is a blue rectangle whith the following error
 message inside it:
 Drawing File Format Unrecogr

 3)
 object
 param name=Filename value=drawing1.dwg
 embed name=thanks src=drawing1.dwg
 pluginspage=http://www.autodesk.com/whip;
 /object
 The only thing I can see is a blue rectangle whith the following error
 message inside it:
 Drawing File Format Unrecogr

 I'm running Apache 1.3.26.

 This is what I have written into httpd.conf:
 AddType model/vnd.dwf .dwf
 #drawing/x-dwf .dwf
 AddType image/vnd.dxf .dxf
 AddType image/vnd.dwg .dwg

 This is what I have written into mime.types and mime.types.default:
 image/vnd.dwg
 image/vnd.dxf

 Appreciate any help. Thanks


 Lars





 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Ereg headache

2002-11-15 Thread Gustaf Sjoberg
or.. if there can be only one instance of the number you can easily calculate it's 
position with

strlen($numbers)

and strpos($numbers, 1);

if strlen returns 5 and strpos 5 you'll know it was far right.. if strpos returns 1 
and strlen 1 it's to the left.. and if strpos  strlen but not 1 it's in the middle.. 
etc.

On Sat, 16 Nov 2002 00:04:50 +0100
[EMAIL PROTECTED] (Gustaf Sjoberg) wrote:

hi,
this is probably not at all what you want, but i wrote it just in case.

?
function pos1($numbers) {
if ($numbers) {
if ($numbers == '1')
return only;
if (ereg(^1.+, $numbers))
return left;
if (ereg(.+1$, $numbers))
return right;
if (ereg(.+(1).+, $numbers))
return middle;
}
return false;
}
$text = 3, 2, 1, 4;
if pos1($text)
echo pos1($text);
?

if 1 is in the string it will return either middle, left, right or only.. if 
it is not it will return false.

On Fri, 15 Nov 2002 08:49:23 -0800 (PST)
[EMAIL PROTECTED] (Mako Shark) wrote:

I have a real problem that I can't seem to figure out.
I need an ereg pattern to search for a certain string
(below). All this is being shelled to a Unix grep
command because I'm looking this up in very many
files.

I've made myself a INPUT TYPE=HIDDEN tag that
contains in the value attribute a list of
comma-delimited numbers. I need to find if a certain
number is in these tags (and each file contains one
tag). I need an ereg statement that will let me search
these lines to see if a number exists, obviously in
the beginning or the end or the middle or if it's the
only number in the list. Here's what I mean (searching
for number 1):

INPUT TYPE = HIDDEN NAME = numbers VALUE =
1,2,3,4,5   //beginning

INPUT TYPE = HIDDEN NAME = numbers VALUE =
0,1,2,3,4,5   //middle

INPUT TYPE = HIDDEN NAME = numbers VALUE =
5,4,3,2,1   //end

INPUT TYPE = HIDDEN NAME = numbers VALUE = 1  
 //only

This is frustrating me, because each solution I come
up with doesn't work. Here is my grep/ereg statement
so far:

$commanumberbeginning = [[0-9]+,]*; //this allows 0
or more numbers before it, and if there are any, they
must have 1 or more digits followed by a comma

$commanumberend = [,[0-9]+]*; // this allows 0 or
more numbers after it, and if there are any, they must
have a comma followed by 1 or more digits

$ereg-statement=$commanumberbeginning .
$numbertosearchfor . $commanumberbeginning;
//$numbertosearchfor will be obtained through a select
control in a form

grep 'INPUT TYPE = HIDDEN NAME = numbers VALUE =
$ereg-statement' *.html

This problem is kicking my butt. Any help?

__
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Javascript + PHP

2002-11-15 Thread BigDog
http://groups.google.com/groups?hl=enlr=ie=UTF-8group=comp.lang.javascript


On Fri, 2002-11-15 at 23:07, SED wrote:
 I need to finish a project using PHP and JavaScript but the references
 for JavaScript I'm using is rather old. I'm looking for a JavaScript
 postlist similar to this but without any luck. I have tried Google but
 it finds every site containing JavaScript where a postlist is mentioned.
 Since there are many pros on this list, maybe someone can point me to a
 JavaScript postlist similar to this.
 
 Thanks,
 Sumarlidi E. Dadason
 
 SED - Graphic Design
 _
 Tel: 896-0376, 461-5501
 E-mail: [EMAIL PROTECTED]
 website: www.sed.is

-- 
.: B i g D o g :.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] output buffering problem

2002-11-15 Thread webmaster
I'm trying to enable output buffering to speed up the load time of some
of our php web pages.  I've consulted the manual and enabled the
following:

output_buffering = On
output_handler = ob_gzhandler

At the beginning of my .php script, I include the following:

ob_start(ob_gzhandler);

This returns complete garbage when I run the page.  Is there something I
missed within the setup?  Or maybe something I need to install for
Apache?

php version = 4.1.2
RedHat = 7.2

Thanks for any advice,
-Elkan


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] It only prints lines that beggin with a number? I'm on a deadline!

2002-11-15 Thread Godzilla
Thanks so much guys, that worked perfectly. I do ok with php but am still on
the bumpy part of the road with SQL queries.

Thanks again!

Regards,
Tim

1lt John W. Holmes [EMAIL PROTECTED] wrote in message
news:00da01c28cad$b9a90d50$a629089b;TBHHCCDR...
  $result = mysql_query (SELECT * FROM `data` WHERE categories);

 Where categories is what?? You don't have any comparison...

 What it's doing is evaluating the column as true or false. Any integer
 column  0 will evaluate to true, so that row will be returned. 1A will
be
 converted to 1, so it'll be returned as true. CD will be converted to
 zero, so that row will not be returned...

 ---John Holmes...




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] RE: -- OT -- [PHP] How to show autocad (dwf, dwg) files in browser?

2002-11-15 Thread Merritt, Dave
Okay, the WHIP viewer is only for DWF files from ACAD 13, 14,  2000 only.
It does NOT handle DWG files or DWF from ACAD 2002 based products
(Inventor),  Volo View Express 2.01 handles DWF, DWG,  DXF only if you
download the english language version.  Non-english versions of VVE will NOT
view DWG  DXF files only DWF files from ACAD 2002.

What version fo ACAD are you dealing with?  If it' 13, 14, or 2000 or going
to have to use WHIP  DWF files.  If it's ACAD 2002 and you can use an
english language viewer then you can use DWF, DWG, or DXF.  If it's ACAD
2002 and your using a non-english viewer then it's DWF only.  

If you have a site that has a mixture of ACAD versions from 13 thru 2002, or
going to have to have to either distinguish between the versions somehow and
use the appropriate viewer or you will have to open each file into ACAD 2002
and save each one back into 2002 format.  The file format for DWF changed
between ACAD 2000  2002.  Sucks I know, esp. the english/non-english thing.

Dave

-Original Message-
From: Lars Espelid [mailto:lars_espelid;hotmail.com]
Sent: Friday, November 15, 2002 6:09 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] How to show autocad (dwf, dwg) files in browser?



Only my third code-example points to the whip-viewer plug, and that's most
likely wrong. My first and second example may also be wrong, someone know
how to get it right?

I have tried these two viewers:

Volo View Express 2.01.
On this page http://www.autodesk.no/adsk/index/0,,837403-123112,00.html it
says:
DWF-Only Version of Volo View Express. Views only DWF files and does not
view DWG or DXF files.
When I fill out the form and continue, the next page says:
This version should understand DWG, DXFT, and DWF (ePlot and eView) files.
What is right?

WHIP! 4.0
On this page http://www.autodesk.com/cgi-bin/whipreg.pl it says:
you can view and print AutoCAD drawings without using AutoCAD.
On the next page a plug-in is downloaded and I can see a .dwf file in my
browser.

Still, when I try to execute my code to view drawing1.dwg it won't work.

Is my code right, and if it is where can I download a .dwg-plug-in.

regards,

Lars




Dave Merritt [EMAIL PROTECTED] skrev i melding
news:109DB0BF6260D211A1B30008C7A4AA1B129674A4;postoffice.arvinmeritor.com...
 Lars,

 You say you downloaded the Volo View Express, but your plug-in page points
 to the WHIP viewer plug.  Regardless, there are two versions of Volo View.
 Did you download the DWF version only of Volo View?

 Dave

 -Original Message-
 From: Lars Espelid [mailto:lars_espelid;hotmail.com]
 Sent: Friday, November 15, 2002 4:09 PM
 To: [EMAIL PROTECTED]
 Subject: [PHP] How to show autocad (dwf, dwg) files in browser?


 HI,

 I have downloaded Volo View Express from www.autodesk.com (plugin to
 web-browser) and can see the sample autocad-file that is presented on
their
 site.

 Code ment to display the file drawing1.dwg on my page (none working):
 1)
 img src=drawing1.dwg
 Displays no image.

 2)
 OBJECT data=drawing1.dwg
 type=image/vnd.dwg
 A nice drawing.
 /OBJECT
 The only thing I can see is a blue rectangle whith the following error
 message inside it:
 Drawing File Format Unrecogr

 3)
 object
 param name=Filename value=drawing1.dwg
 embed name=thanks src=drawing1.dwg
 pluginspage=http://www.autodesk.com/whip;
 /object
 The only thing I can see is a blue rectangle whith the following error
 message inside it:
 Drawing File Format Unrecogr

 I'm running Apache 1.3.26.

 This is what I have written into httpd.conf:
 AddType model/vnd.dwf .dwf
 #drawing/x-dwf .dwf
 AddType image/vnd.dxf .dxf
 AddType image/vnd.dwg .dwg

 This is what I have written into mime.types and mime.types.default:
 image/vnd.dwg
 image/vnd.dxf

 Appreciate any help. Thanks


 Lars





 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] PHP Website

2002-11-15 Thread Van Andel, Robert
Anyone else having trouble accessing PHP.net?

Robbert van Andel 




 The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from all
computers. 





[PHP] newbie's question

2002-11-15 Thread Frank Wang
Hi,
what is the correct way of testing if a string is empty or not?

fw



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




  1   2   >