[PHP-DB] disable right-click in all frames.

2003-02-22 Thread Matt
hey everyone. i have a php script that opens up a new window with multiple frames. i am using javascript to disable the right-click mouse button on the frames. the problem is that on of the frames uses and external source, which i can't change or modifiy at all. is there a way for me to

[PHP-DB] ftp indexer

2003-02-22 Thread Matt
does anyone know where i can find a simple FTP indexer script? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] disable right-click in all frames.

2003-02-22 Thread David T-G
Matt -- ...and then Matt said... % % hey everyone. i have a php script that opens up a new window with multiple % frames. i am using javascript to disable the right-click mouse button on ... To answer your question, you might instead of calling the other content directly just have your script

Re: [PHP-DB] disable right-click in all frames.

2003-02-22 Thread Leif K-Brooks
1. Not a PHP question. 2. Definitley not a PHP database question. 3. No, I don't think so. Matt wrote: hey everyone. i have a php script that opens up a new window with multiple frames. i am using javascript to disable the right-click mouse button on the frames. the problem is that on of the

Re: [PHP-DB] disable right-click in all frames.

2003-02-22 Thread Micah Stevens
Sure there is, just fopen the remote page, get it, and then parse it until you know you're in the body tag, where you can insert your Javascript. Then just output the rest. -Micah On Sat, 2003-02-22 at 05:22, Matt wrote: hey everyone. i have a php script that opens up a new window with

[PHP-DB] Differences between php3 and php4

2003-02-22 Thread Y Al Hinai
Hi everyone.. I am new to php. I have PHP4.2.3 installed with Apache on my computer. I was practicing on the language from a book called PHP essentials by Julie C Meloni. I am facing many problems as many functions from php3 are not working anymore in PHP4! For example, header(),

RE: [PHP-DB] disable right-click in all frames.

2003-02-22 Thread Matt Palermo
I don't really know how to go about doing that. Could you go into a more in depth explanation please? Thank you. Matt -Original Message- From: Micah Stevens [mailto:[EMAIL PROTECTED] Sent: Saturday, February 22, 2003 2:07 PM To: Matt Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB]

Re: [PHP-DB] Differences between php3 and php4

2003-02-22 Thread Leif K-Brooks
Y Al Hinai wrote: include(mydata.txt); Should be: include('mydata.txt'); 1. Is there any source (book or URL or whatever) that shows what have been changed between php3 and php4 and what are the new functions or values are? Something like a table or differences in functions.

RE: [PHP-DB] disable right-click in all frames.

2003-02-22 Thread Micah Stevens
Sure, uhm.. say your java script belongs in the body tag so that it's run when the page loads. example.com/included.html is the page you want to include in your site with the javascript. the file() function would probably work better than fopen, so I'll use that: So: ?php $javascript =

[PHP-DB] DNS entry

2003-02-22 Thread Ryan Holowaychuk
I have a site that the web page and the FTP are on different servers, but I can not figure how to enter that in the zone file. And not sure if I have this right: IN A 111.111.111.11 www IN CNAME website.ca. ftp IN A 222.222.222.222 ftp IN

[PHP-DB] sorry I sent the last

2003-02-22 Thread Ryan Holowaychuk
Sorry I sent the last message to the wrong list - so sorry But if anybody can help that would be great

[PHP-DB] Making a text wrapper

2003-02-22 Thread Lars Rasmussen
Hi All, I'm relly sorry to interrupt you, but i need a little help. I'm had to make a text wrapper that can take a string, and count the letters in words (and spaces) and exaple make a br each time 64 caracters has passed (BUT it may NOT split words into two...) I hope you understand me,

[PHP-DB] Delete duplications from a mysql-resultset

2003-02-22 Thread André Sannerholt
I know the SELECT DISTINCT function. But I need to delete duplications from the finished resultset. Is that in any way possible? The result-set is not like an usual array, is it? I've tried the unique_array function, but it didn't work. André Sannerholt -- PHP Database Mailing List

[PHP-DB] Using Snoopy

2003-02-22 Thread darryl porter
Does anyone know of any sites that explains how to use the Snoopy class? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Preserving form field values between pages/tags

2003-02-22 Thread Nelson C
Thanks for the code!... But its not exacly what I'm looking for... I want to move from page to bage (And back again) using links and not actually submit the sub-form... Is that even possible without using JavaScript onFocus etc?? -Nelson Nick Clarkson [EMAIL PROTECTED] wrote in message

RE: [PHP-DB] Delete duplications from a mysql-resultset

2003-02-22 Thread John W. Holmes
I know the SELECT DISTINCT function. But I need to delete duplications from the finished resultset. Is that in any way possible? The result-set is not like an usual array, is it? I've tried the unique_array function, but it didn't work. You have to add the result set into an array, first.

RE: [PHP-DB] Making a text wrapper

2003-02-22 Thread John W. Holmes
I'm had to make a text wrapper that can take a string, and count the letters in words (and spaces) and exaple make a br each time 64 caracters has passed (BUT it may NOT split words into two...) www.php.net/wordwrap ---John W. Holmes... PHP Architect - A monthly magazine for PHP

Re: [PHP-DB] Making a text wrapper

2003-02-22 Thread Paul Chvostek
On Sun, Feb 23, 2003 at 01:53:55AM +0100, Lars Rasmussen wrote: I'm had to make a text wrapper that can take a string, and count the letters in words (and spaces) and exaple make a br each time 64 caracters has passed (BUT it may NOT split words into two...) If http://www.php.net/wordwrap