[PHP] Fulltext-Search

2001-12-24 Thread Martin
Hello! Does anybody know a good script to search the own web-server?! Would be nice if the script could display the whole sentence where the word was found... Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP] How to strip off all html-comments

2001-12-31 Thread Martin
Hello! How can I easily strip off all html-comments (! Comment ) from a string? Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Flash and php

2002-02-24 Thread Martin
-scroller done in flash, but generated with php (to show diffenrent text on different user-inputs for example). Has someone done this before? Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Flash and php

2002-02-24 Thread Martin
Okay, I found the Ming-Library in the documentation (I just search for flash in the functions list and didn't find anything). I will try this. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Flash and php

2002-02-24 Thread Martin
Hi Mika, thanx for your answer, http://www.php.net/manual/en/ref.swf.php http://www.php.net/manual/en/ref.ming.php which one should I prefer (using windows) ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Downloadbox

2002-03-02 Thread Martin
Hello! I have a PDF-File, which the user should be able to download The problem is that the browser is showing this file when the user clicks the link instead of displaying the box to start the download Can I force the browser to show the box? Martin -- PHP General Mailing List (http

[PHP] UDP socket_read() problem

2002-09-21 Thread Martin
? What is the normal behaviour of socket_read() when the socket is empty? I write to the socket (address/port) like crazy from the other side of the LAN, but nothing seems to be happening. Thanks, Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] UDP socket_read() problem

2002-09-21 Thread Martin
, it 'should' work over a LAN TCP is usually eaiser and a nice alternative if you can't resolve issues. Ok, if I can't get it to work with UDP, I think I'll switch to TCP. Thanks, Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Making session last

2001-09-23 Thread Martin
have no access to the php.ini-file. session_set_cookie_params (int lifetime) didn't work. Any ideas? Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail

[PHP] Making variable global / accessing variable

2001-09-30 Thread Martin
in this function. Any idea how I can make this variable gloabl and whats the easyst way to access this var then? Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail

[PHP] Re: fopen

2001-09-30 Thread Martin
Kmarada schrieb: is it possible to use fopen to open 5000 files differents simultaneous and edit it simultaneous ? I think, this depends how many files your operating-system can handle. i have one file. if four user edit it simultaneous what happen? there is something to lock the file

[PHP] Dynamic update of content

2001-10-31 Thread Martin
that selection is the page populates other option boxes. TIA, Martin S -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Am i crazy?

2001-11-04 Thread Martin
is interpreted correctly - and the file exists (I checked). And the $name is correct - echo $name gives admin. And neither does the php.net example work ... if ($name='admin') { header(Location: http://www.php.net/;); } doesn't redirect to php.net. *sigh* Martin -- PHP General Mailing

RE: [PHP] Am i crazy?

2001-11-04 Thread Martin
Jack Dempsey wrote: you're assigning, not checking for equality...use two ='s Still not redirecting ... Martin S -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators

RE: [PHP] Am i crazy?

2001-11-04 Thread Martin
switch.php. I'm simply not redirected anywhere. (Nothing else is supposed to happen). are you sure $name really equal's admin? Ohh yes. if you change header to echo $MYPATH does that work? No. Martin S -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] Am i crazy?

2001-11-04 Thread Martin
.. There isn't any html in the page at all. It's intended as a switchboard for people logging in to be redirected according to user name. let's see.. yeah that's about all I can think of.. if $name is echoing something then I have no clue why it's not working :( Martin S -- PHP General Mailing

[PHP] Re: how about walking another way?

2001-11-04 Thread Martin
not working. (vay;-))) ) than remember than any mission can be completed in different ways try somth like this ;-) if ($name == admin) { print 'META HTTP-EQUIV=Refresh Content=0; URL='.$MYPATH.'/admin.php.''; } OK, thanks. That works. Strange ... Martin S -- PHP

Re: [PHP] Re: how about walking another way?

2001-11-04 Thread Martin
() is the only reliable way to do it! Yes - I read years ago that some browsers have problem honouring META redirects. Didn't know that still is the case ... I've tried this with Mozilla, Navigator 4.77 and Konqueror (in KDE 2.2.1) on Linux, all work. Martin S -- PHP General Mailing List (http

Re: [PHP] Am i crazy? - Solved.

2001-11-04 Thread Martin
there were two trailing spaces after the ?. Making that page end with ? fixed the redirect. Thanks to everyone. Martin S -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e

[PHP] rename problem...

2001-08-09 Thread Martin
Hi! When i'm trying to run this script: ? rename(document.htm, testing.htm); ? I get this error: Warning: Rename failed (Permission denied) in C:\Inetpub\WEBS\mysko\uploads\rename.php on line 4 The directoy has change permissions. What am i donig wrong...? /martin -- PHP General Mailing

[PHP] something like SSI ?

2001-08-14 Thread Martin
Ok, this may seem like a dumb newbie question... Is there an function like ASP's Server Side Include in PHP ? Or what is best to use instead, fread ? /marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP] Cannot get uploaded file by PUT request vith PHP4 and Apache1.3

2001-08-22 Thread Martin
I wanted to make a script to allow publishing from Netscape Composer using PUT request on my Apache server with PHP4. I have tried the example from manual. But i can not get the uploaded file. The $PHP_UPLOADED_FILE_NAME is not set and the $PHP_PUT_FILENAME allso is not set. Vhen I send the

[PHP] insert into problems.

2001-09-03 Thread Martin
($connectionstring, INSERT INTO lappar (text,datum) VALUES ('$text','$date')); odbc_close($connectionstring); ? /martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail

[PHP] Sending PDF-Doc as mail

2001-07-22 Thread Martin
Doesn't work in Netscape and M$-Outlook Any idea, how this is done? Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Re: patched

2007-06-20 Thread martin
See the file. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] array, classes and values

2006-10-29 Thread martin
hello, New to oop i'm really strugling to find a way to read a specified MYSQL database and tabel in order to determine the number of records, the number of fields in each record and convert the data into their labels and values. Please give me some hints or code... Thanks, Martin -- PHP

[PHP] Reading all headers sent

2005-03-18 Thread martin
regards, MARTIN -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Reading all headers sent

2005-03-18 Thread martin
the idea. $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,http://api.google.com/search/beta2;); curl_setopt($ch, CURLOPT_POST,1); curl_setopt($ch, CURLOPT_POSTFIELDS,$send); curl_setopt ($ch, CURLOPT_HTTPHEADER, $header); $data = curl_exec($ch); Best regards, MARTIN

Re: [PHP] Reading all headers sent

2005-03-29 Thread martin
/xml MARTIN www.movil.be Richard Lynch wrote: Search php.net for RAW HTTP Maybe. On Fri, March 18, 2005 3:28 am, martin said: Thanks for the answer, what I'm trying to achieve is a php proxy that receives any GET/POST request with correspoding headers and brings back the results to the caller. Let's

[PHP] getting green screen

2003-01-20 Thread martin
Hi, I'm somtimes getting a green screen after a PHP-app (green background and backslashes in front of '-signes. When reloading this outputpage, the normal lay-out without backslashes is visible. Why does this happen? Can I prevent it? Martin -- PHP General Mailing List (http://www.php.net

[PHP] download script

2003-01-21 Thread Martin
i need a script that make downloads from files but it must support resuming for getright and download acelerator pro. Thanks... I have this classic download script , but does not support resuming error_reporting(0); header(Last-Modified: . gmdate(D, d M Y H:i:s T,

[PHP] problem with header

2003-01-30 Thread Martin
] [client 200.43.42.120] malformed header from script. Bad header=HTTP/1.1 206 Partial content: /usr/local/php/bin//php Somebody know how i can make it works. Thanks, Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Screen Size detect??

2003-02-01 Thread Martin
you can create a form with hidden fields like this script language=JavaScript document.screendata.height.value=screen.height; document.screendata.width.value=screen.width; screendata.submit(); /script form method=post action=index.php name=screendata input type=hidden name=height

[PHP] Problem with big files

2003-05-27 Thread Martin
we would like to upload large files to the server ( 20 MB ). We have changed the configuration of php.ini in order to upload this files via http. We changed the following parameters: post_max_size = 25M file_uploads = On upload_tmp_dir =/tmpupload upload_max_filesize = 25M memory_limit = 25M

[PHP] get output in .html file

2003-12-17 Thread martin
Does somebody know how to get the output of an .php file into an .html file (server side). This in order to cache generated pages for futur visitors. thanks Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Weird question - environment data from windows

2004-02-18 Thread Martin
When you've stopped laughing - is it at all possible to pass Windows environment data from a Windows workstation to an PHP application running on a Linux server? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] is pecl.php.net down?

2007-03-24 Thread martin
Since about 7 hours now i can't get on the pecl.php.net pages. The site doesn't seem to be available. Does somebody know why? Thanks, Martin J'utilise la version gratuite de SPAMfighter pour utilisateurs privés

[PHP] Re: is pecl.php.net down?

2007-03-24 Thread martin
thanks Greg, it's back running Martin Gregory Beaver [EMAIL PROTECTED] a écrit dans le message de news: [EMAIL PROTECTED] martin wrote: Since about 7 hours now i can't get on the pecl.php.net pages. The site doesn't seem to be available. Does somebody know why? Hi Martin, The entire

Re: [PHP] Persistent connections and transactions

2001-01-25 Thread Martin A. Marques
El Jue 25 Ene 2001 14:34, Frank Joerdens escribi: On Thu, Jan 25, 2001 at 11:18:49AM -0300, Martin A. Marques wrote: [ . . . ] No, and thats why in the postgres list we talked about persistent connections not having much benefits. That is because the connection is persistent to the httpd

Re: [PHP] Persistent connections and transactions

2001-01-25 Thread Martin A. Marques
El Jue 25 Ene 2001 16:49, Frank Joerdens escribi: On Thu, Jan 25, 2001 at 04:04:24PM -0300, Martin A. Marques wrote: [ . . . ] Of course. But the persistent connection are not working as the manuals say they should work. It appears this riddle has been solved: From a post by Adam Lang

Re: [PHP] PostgreSQL + PHP + SQL warning messages

2001-01-25 Thread Martin A. Marques
email: [EMAIL PROTECTED] Santa Fe - Argentinahttp://math.unl.edu.ar/~martin/ Administrador de sistemas en math.unl.edu.ar - -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

[PHP] Date Comparison Question

2001-01-26 Thread Martin Fernandez
oceed. Any direction will be extremely appreciated. Thanks in advance. Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] disabling php ability via .htaccess

2001-01-30 Thread Martin Pitt
users to run .php scripts in certain directories until we allow them to, and remove the file. How can this be done via method stated above, or is there another way of going about this. Many Thanks Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] Exit Function

2001-01-31 Thread Martin A. Marques
a dirty job, but someone told I had to do it. - Martn Marqus email: [EMAIL PROTECTED] Santa Fe - Argentinahttp://math.unl.edu.ar/~martin/ Administrador de sistemas en math.unl.edu.ar

Re: [PHP] Tab character

2001-02-01 Thread Martin A. Marques
PROTECTED] Santa Fe - Argentinahttp://math.unl.edu.ar/~martin/ Administrador de sistemas en math.unl.edu.ar - -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

[PHP] php4 - MS SQL7 connection problem

2001-02-01 Thread Martin Tiscornia
Hello! I'm running: WinNT4, IIS4, php 4.03pl1, and I'm trying to connect to MS SQL 7. Well, I configured the php.ini (extension=php_mssql70.dll), and I copy that .dll to the windows folder. Now I want to connect to the SQL and it doesn't work, it makes a time out. If I do the same things with php

Re: [PHP] Tab character

2001-02-02 Thread Martin A. Marques
El Jue 01 Feb 2001 13:49, Alexander Skwar escribi: So sprach Martin A. Marques am Thu, Feb 01, 2001 at 12:20:54PM -0300: yes (depending) On what? It depends on the charset you use. Saludos... :-) -- System Administration: It's a dirty job, but someone told I had to do

[PHP] getting STDIO

2001-02-02 Thread Martin A. Marques
http://math.unl.edu.ar/~martin/ Administrador de sistemas en math.unl.edu.ar - -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

Re: [PHP] Off Subject, but can't find any info elsewhere

2001-02-03 Thread Martin Thoma
Go to developers.netscape.com, there you can find newsgroups where you can get help. Martin Toby Miller schrieb: Web Developers, I know this has nothing to do with PHP, but some bright minds out there might have run across it. It's about Netscape 6 mouseovers. I've read elsewhere

[PHP-CVS] cvs: php4 /pear Cache.php

2001-03-04 Thread Martin Jansen
mj Sun Mar 4 06:26:59 2001 EDT Modified files: /php4/pear Cache.php Log: fixed typo Index: php4/pear/Cache.php diff -u php4/pear/Cache.php:1.3 php4/pear/Cache.php:1.4 --- php4/pear/Cache.php:1.3 Sat Mar 3 11:21:49 2001 +++ php4/pear/Cache.php

[PHP] Please Help!!!! - Really BASIC stuff!

2001-03-06 Thread Martin Hughes
:0)) Many Thanks :0), Martin == Musical Director University of York Gilbert Sullivan Society 177 Hull Road, York YO10 3JY 01904 427 537 / 07951 015 220 [EMAIL PROTECTED] http://www.mixermanic.co.uk == -- PHP

[PHP] Please Help!!!! - Really BASIC stuff!

2001-03-06 Thread Martin Hughes
xt"); break; case "cast" : include("side_cast.txt"); break; case "orchestra" : include("side_orchestra.txt"); break; } ? etc. in every page? Or is there a way of doing the whole link thing and changing several

[PHP] Value of if(isset(X)) problem

2001-03-06 Thread Martin Skjöldebrand
Sorry bout the length I'm a newbie to PHP/MySQL so bare with me ... Here's a snippet of an app I'm hacking. I have a form that should update a client form. the cl_ are taken from a database table and works nicely. The point of this that they should possibly be replaced by txtXXX and

[PHP] Including file...

2001-03-10 Thread Martin Hughes
;, "dx7", "k2000", "k2vx", "k2500"); $audio = array("audiomain", "synth"); $recordings = array("recordingsmain", "reccompare", "olc", "obc", "csr",

[PHP] Variable scope

2001-03-10 Thread Martin Skjöldebrand
How do I make a variable persistent between webpages? V e r b a l -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] How to str-replace

2001-03-13 Thread Martin Thoma
Hi ! How can I replace a string (like "TABLE") case-insensitive (replace also "table", "Table","tABle"...) ? str_replace is case-sensitive. Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

Re: [PHP] How to str-replace

2001-03-13 Thread Martin Thoma
I found out to use eregi_replace. Martin Thoma schrieb: Hi ! How can I replace a string (like "TABLE") case-insensitive (replace also "table", "Table","tABle"...) ? str_replace is case-sensitive. Martin -- PHP General Mailing List (http://www.p

[PHP] Replace everything except of...

2001-03-13 Thread Martin Thoma
Hello ! How can I use eregi_replace to replace every "BR" with "", except when it's "BBR" ?? Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact t

[PHP] Maintaining Session State Across Clusters

2001-03-13 Thread Martin Cameron
Does anyone know if it is possible to maintain session state across a cluster of four web servers? Regards Martin Cameron -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

[PHP] Is linkage to C/C++ lib or programs in Unix possible?

2001-03-15 Thread Martin Lam
idea to re-write them. Thanks for helps! Best regards, Martin Lam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Fetch side with Cookies

2001-03-15 Thread Martin Thoma
d sending a HTTP-Get with the cookie. But I have no idea: - How to use the socket - How to send the GET - How to send the Cookie - How to recieve the data Any help is welcome ! Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comm

[PHP-CVS] cvs: php4 /pear/HTML Common.php Table.php

2001-03-21 Thread Martin Jansen
mj Wed Mar 21 22:23:38 2001 EDT Modified files: /php4/pear/HTML Common.php Table.php Log: - some cosmetic changes in pear/html/HTML_Common and pear/html/HTML_Table for better readability. Index: php4/pear/HTML/Common.php diff -u

Re: [PHP-CVS] cvs: php4 /pear/HTML Common.php

2001-03-21 Thread Martin Jansen
On Thu, 22 Mar 2001 04:14:43 -, Adam Daniel wrote: * @copyright Copyright 2001 Ethicon Endo-Surgery Isn't this a contradiction to the copyright notice of the license in the head of the file? -Martin -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP-CVS] cvs: php4 /pear/HTML Table.php

2001-03-22 Thread Martin Jansen
mj Thu Mar 22 06:32:51 2001 EDT Modified files: /php4/pear/HTML Table.php Log: - Fixed bug reported by Bertrand Mansion. Index: php4/pear/HTML/Table.php diff -u php4/pear/HTML/Table.php:1.2 php4/pear/HTML/Table.php:1.3 ---

[PHP-CVS] cvs: php4 /pear/HTML Common.php

2001-03-22 Thread Martin Jansen
mj Thu Mar 22 07:27:07 2001 EDT Modified files: /php4/pear/HTML Common.php Log: - removed wrong copyright notice. Index: php4/pear/HTML/Common.php diff -u php4/pear/HTML/Common.php:1.2 php4/pear/HTML/Common.php:1.3 --- php4/pear/HTML/Common.php:1.2

[PHP] Cookie problem

2001-03-25 Thread Martin Skjöldebrand
I'm experiencing all kinds of problems with, what we suppose is the cookie setting. This is the code: if (isset($authentication)) { setcookie("status", $status, time()+600); setcookie("user", $user, time()+600); setcookie("group", $group, time()+600); setcookie("authentication",

Re: [PHP] Cookie problem

2001-03-27 Thread Martin Skjöldebrand
Thanks everyone for all the responses. I think I'll look into sessions in the future. Meanwhile I'll have to see what others come up with. Thanks, Martin S. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] array_diff usage

2001-04-02 Thread Martin Skjöldebrand
Stig Venaas wrote: So the arrays contain one string each? array_diff() won't work then. Sorry - my fault. I'm getting the values from a database - not manually added. Try this: $a = array(1, 2, 3, 4, 5); $b = array(1, 2); $test = array_diff($a, $b); $lines = count($test); echo $lines;

RE: [PHP] PHP object-oriented features

2001-12-16 Thread Martin Towell
then!! Martin -Original Message- From: Colin Tucker [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 11:42 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP object-oriented features Hi there, Just wondering if there is any plans for more work on the PHP OO features, and/or the parser

RE: [PHP] 'Select All'

2001-12-17 Thread Martin Towell
(true); input type=button value=None onClick=my_select(false); input type=checkbox name=mycheckbox[] input type=checkbox name=mycheckbox[] input type=checkbox name=mycheckbox[] input type=checkbox name=mycheckbox[] /form Martin -Original Message- From: Shane Wright [mailto:[EMAIL PROTECTED

[PHP] Crashing in Win2K with IIS and latest PHP installed when loading an open page...

2001-12-18 Thread Martin Hughes
- it ONLY happens when I'm loading a php file via http://localhost I'm confused... help!! Thanks Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

[PHP] JavaScript php question - mainly JS though so slightly OT but hep needed!!! :o)

2001-12-18 Thread Martin Hughes
info.php?patch=XX in a new popup window Do I do it something like this, or is there a faster/better way?? Cheers Merry X-Mas! Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

RE: [PHP] JavaScript php question - mainly JS though so slightly OT but hep needed!!! :o)

2001-12-18 Thread Martin Towell
. -Original Message- From: Martin Hughes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 9:54 AM To: [EMAIL PROTECTED] Subject: [PHP] JavaScript php question - mainly JS though so slightly OT but hep needed!!! :o) How could I write the function windowPopup(XX) where XX

Re: [PHP] JavaScript php question - mainly JS though so slightly OT but hep needed!!! :o)

2001-12-19 Thread Martin Hughes
Many Thanks everyone!! Mart -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] RE: How should I do this site...?

2001-12-19 Thread Martin Hughes
Thanks, Martin = Assistant Musical Director Crazy For You - February 2002 177 Hull Road, York YO10 3JY 07815 151 970 / 01904 427 537 [EMAIL PROTECTED] / [EMAIL PROTECTED

RE: [PHP] addslash/stripslashes

2001-12-19 Thread Martin Towell
watch all your troubles melt away - well maybe not ALL your troubles, but at least the trouble as mentioned below... If you want to add PHP strings to JavaScript code, use addslashes() instead - it's as easy as that... :) Martin -Original Message- From: TD - Sales International Holland

RE: [PHP] Slash problem

2001-12-19 Thread Martin Towell
either set magic_quotes_gpc to off in you .ini file - or use stripslashes() on the variable -Original Message- From: Evansville Scene [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 11:40 AM To: [EMAIL PROTECTED] Subject: [PHP] Slash problem I'm fairly new @ PHP, so

[PHP] PHP XML

2001-12-19 Thread Martin Hughes
Heya, Is it possible to integrate XML with PHP - ie get data out of an XML file and format it in html using php? Or alternatively, use php within an XSL file...? Cheers Mart -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[PHP] Re: PHP XML

2001-12-19 Thread Martin Hughes
Sorry - I should perhaps say that I'm only intending to code this site for IE(5/6) - there are too many issues with NetS - I **KNOW** that that's bad and lazy, but that's the way it's gonna be :o) M -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [PHP] PHP XML

2001-12-19 Thread Martin Hughes
tags ?php find this line: short_open_tag = On change On to Off bvr. On Thu, 20 Dec 2001 01:34:58 -, Martin Hughes wrote: Heya, Is it possible to integrate XML with PHP - ie get data out of an XML file and format it in html using php? Or alternatively, use php within an XSL file

RE: [PHP] Re: Mommy, is it true that...?

2001-12-20 Thread Martin Towell
My 2c worth... IMO, If you download a script and just blindly copy it to your system, then you're just asking for trouble, period - I think you should ALWAYS check code for anything that could be malicious and also check for any loopholes that need to be closed before using it. This might mean

RE: [PHP] Re: Mommy, is it true that...?

2001-12-20 Thread Martin Towell
another 2c worth... So it's the programmer's responsibility to ensure all his/her code is as secure as possible. If it can be shown that it isn't secure, then the programmer should endevour to close that hole. This goes for any area that hackers can exploit, software and hardware...

RE: [PHP] How to save the result page generated by a Form?

2001-12-20 Thread Martin Towell
separate the email address with, can remember which now, either a comma or a semicolon - try one, if it does work, it must be the other :) -Original Message- From: Webleycity [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 3:52 PM To: Stefan Rusterholz; Joe Cc: PHP Subject:

RE: [PHP] Multiple JavaScript Windows with PHP

2001-12-20 Thread Martin Towell
I haven't tried your code, but I'm thinking what's happening is that the browsers that the code isn't working in is stopping at the returnwin=window.opener.navigate(urlLoc); line - what happens if you change it to returnwin=window.opener.location = urlLoc; ?? Original Message- From:

RE: [PHP] Beginner question?

2001-12-20 Thread Martin Towell
?php //$fp = fopen (C:/Program Files/localhost/info.txt, r); //$fp = fopen (http://compcanlit.ca/;, r); $fp = fopen (./info.txt, r); while (!foef($fp)) { $line = fgets($fp, 1024); echo $line; } fclose($fp); ? what you were doing was opening a file ready for reading and then printing the

[PHP] Authentication problem with IE on Win2k

2001-12-21 Thread Martin Schichl
switch to the other page, I get an authenitaction error ... (seems that IE forgets the user PW) any hints? ThanX, Martin - Dipl.-Ing. Martin Schichl SCC Software, Communication Consulting GmbH Co KEG Grottenhofstr. 3, A-8053

[PHP] Php Directory structures

2001-12-22 Thread Martin Hughes
(which will be an XSL stylesheet loading both the header info and the article body.xml). Can php count the number of articles etc in the dir and then automatically create the page? (or can anyone think of a better way of doing this :-)) Cheers, Martin -- PHP General Mailing List (http

[PHP] mail function not support in php 4.1.0 with compiled with IMAP ???

2001-12-22 Thread Martin Fienkeng
Is it that in compiling with imap I loose the mail function? or is there another switch to activate this Any help in resolving this will be greatly appreciated Martin Fienkeng Just searching for more knowledge _ Chat with friends online

[PHP] Authenitcation problem with IE on Win2k

2001-12-24 Thread Martin Schichl
or 3 the browser askes me to login again ... any hints? ThanX, Martin - DI Martin Schichl SCC Software, Communication Consulting GmbH Co KEG Grottenhofstr. 3, A-8053 Graz Tel. +43/(0)316/265-205, Fax +43/(0)316/265-234 mailto:[EMAIL

RE: [PHP] Oracle

2002-01-01 Thread Martin Towell
there's the OCI* or ORA_* functions depending on the version of oracle you're using. -Original Message- From: Phillip B. Bruce [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02, 2002 10:54 AM To: PHP Subject: [PHP] Oracle Hi, Has any one on this list worked with Oracle, Apache

Re: [PHP] Select box won't display in Netscape 4.xx

2002-01-02 Thread Martin Schichl
Dear Edwin! Yes, I have had this problem before ... My problem was, that I a line in my style sheets, which could not be solved by NS. (I think it was border?) Yours, Martin I'm developing a website for multiple browsers. In Netscape 4.xx (both Win98 and Linux versions), the php-scripts

RE: [PHP] php newbie

2002-01-02 Thread Martin Schichl
To design, you just need a text editor (or html editor) Martin At 13:24 02.01.02 +0200, Niklas Lampén wrote: To test your PHP scripts you do need a server with PHP. It's very easy to setup one on to you local machine + there is many completely free ones. Niklas -Original Message

RE: [PHP] ora_numrows() function

2002-01-02 Thread Martin Towell
someone left this comment on the php site - [EMAIL PROTECTED] at 27-Dec-2000 09:37 It is important to note that this function acts more as a counter of the number of rows fetched from the cursor. If you execute this prior to processing the cursor

RE: [PHP] Code not working in 4.1

2002-01-02 Thread Martin Towell
use: extract($GLOBALS); http://www.php.net/manual/en/function.extract.php -Original Message- From: Jonathan Hilgeman [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 11:32 AM To: [EMAIL PROTECTED] Subject: [PHP] Code not working in 4.1 I used to run PHP 4.0.3 and at the

RE: [PHP] Holy Moly...

2002-01-02 Thread Martin Towell
This one's pretty good, IMO but as for the best - hmm... that would be a matter of personal opinion... :) -Original Message- From: Julie Hull [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 1:16 PM To: [EMAIL PROTECTED] Subject: [PHP] Holy Moly... Could someone please

RE: [PHP] Date aritmetic

2002-01-02 Thread Martin Towell
convert both in dates into a time stamp using mktime() subtract the two figures you get back then divide by 86400 (60sec/min * 60min/hr * 24hr/day) -Original Message- From: Carlos Fernando Scheidecker Antunes [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 12:57 PM To:

RE: [PHP] Date aritmetic

2002-01-02 Thread Martin Towell
This isn't to pick on Carlos, but I've notice there's heaps of ppl who don't read the manual, or do a search on the manual - I've found that many of my questions have been answered by doing a search on the docs -Original Message- From: Bogdan Stancescu [mailto:[EMAIL PROTECTED]] Sent:

RE: [PHP] If Statement with more than one conclusion

2002-01-02 Thread Martin Towell
something like: If(in_array($ext, array(com, net, org, info)){ //Then do this } If(in_array($ext, com.uk, me.uk, org.uk)){ //Then do this } maybe?? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 4:22 PM To: php-general Subject:

RE: [PHP] Re: how can I add a variable to this sample

2002-01-03 Thread Martin Towell
$service_type_insert = $x['${key}service_type']; //returns empty even though I know a value is there change the single quotes to double, thusly: $service_type_insert = $x[${key}service_type]; 'cause PHP is using the literal ${key}service_type and not interpreting it -Original

RE: [PHP] no reply-to header?

2002-01-06 Thread Martin Towell
I thought that if there's no reply-to, then email clients will use the from as the reply to ?? -Original Message- From: Jimmy [mailto:[EMAIL PROTECTED]] Sent: Monday, January 07, 2002 3:22 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [PHP] no reply-to header? Hi All, I just

  1   2   3   4   5   6   7   8   9   10   >