Re: [PHP] Oracle 7 support

2002-11-12 Thread @ Edwin
Hello, First, let me just say that I'm no Oracle guru. :) But while we're waiting for them... "Ford, Mike [LSS]" <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: Dan Field [mailto:danf@;ceredigion.gov.uk] > > Sent: 12 November 2002 13:39 ...[snip]... > > That is great news,

Re: [PHP] Oracle 7 support

2002-11-12 Thread @ Edwin
"Maxim Maletsky" <[EMAIL PROTECTED]> wrote: > > Well, I will spread some light - I maintain OCI8 extension :) > > Your machine does not need Oracle Server installed, it needs Oracle > Client installed. These are two completely different things. > > So, try this in your command prompt: > > ec

Re: [PHP] syntax question...

2002-11-12 Thread @ Edwin
Hello "Kelly Meeks" <[EMAIL PROTECTED]> wrote: > I saw this used in a script, but after a couple of searches didn't come up with anything on php.net. I think you're looking for this: http://www.php.net/manual/en/language.types.string.php#language.types.string .syntax.heredoc - E ...[snip]...

Re: [PHP] PHP, MySQL, and Japanese text

2002-11-12 Thread @ Edwin
Hello, "Step Schwarz" <[EMAIL PROTECTED]> wrote: > Hi all, > > I was hoping to find some code examples or tutorials on using PHP/MySQL with > Japanese text. The site I've built is very close, but apparently a very I'm not sure about tutorials in English but if you know Japanese, I'm sure you ca

Re: [PHP] How To Delete All Files In A Directory

2002-11-12 Thread @ Edwin
Hello, "@ Nilaab" <[EMAIL PROTECTED]> wrote: > Hello Everyone, > > I have a directory that I want emptied everytime a script accesses a certain > function. I tried using rmdir() and then mkdir(), thinking that it will > delete the directory and the contents within it, and would create a brand > n

Re: [PHP] Trying to e-mail password

2002-11-12 Thread @ Edwin
"John W. Holmes" <[EMAIL PROTECTED]> wrote: > ...[snip]... > And where do you plan on storing this 'secret code' that your dynamic > PHP script have to have access to in order to add users and send > forgotten email messages?? > > If you have something to protect, then you should have your own

Re: [PHP] Works in html, not when echoed in PHP

2002-11-12 Thread @ Edwin
Hello, "Aaron Merrick" <[EMAIL PROTECTED]> wrote: > Folks, > > Can't see an answer anywhere in the archives, so here goes. > > This works fine in plain html: > > onresize="window.location.reload(false)" topmargin="1" bottommargin="0" > leftmargin="0" rightmargin="0"> > > When I put it in PHP thu

Re: [PHP] Trying to e-mail password

2002-11-12 Thread @ Edwin
"Ben C." <[EMAIL PROTECTED]> wrote: > I was setting up a news site that is customized for the registered user. I > wanted that user to have the ability to be able to click a button and have > the password e-mailed to him. The password function that I used is > password(password) through mysql.

Re: [PHP] Works in html, not when echoed in PHP

2002-11-12 Thread @ Edwin
"Chris Shiflett" <[EMAIL PROTECTED]> wrote: ...[snip]... > Yes, this is the same code that "works fine in plain html". Why echo it in PHP if it is static? Good question ;) But I'm sure there's a good a answer :) Besides, why would anybody want to do that if there's no good reason? - E --

Re: [PHP] PHP and MySQL sorting using COUNT

2002-11-13 Thread @ Edwin
Hello, <[EMAIL PROTECTED]> wrote: > > I'm sorting records using COUNT with the following mysql command > > $result = mysql_query ("SELECT company_name, agent_name, count(*) FROM > $cur_listings GROUP BY company_name, agent_name"); > > Running this in MySQL does exactly what I need it to do but

Re: [PHP] redirect without using header

2002-11-13 Thread @ Edwin
Hello, "pig pig" <[EMAIL PROTECTED]> wrote: > function Order_action($sAction) > { > global $db; > global $sForm; > global $sOrderErr; > > $sParams = ""; > $sActionFileName = "ShoppingCart.php?"; > > do some error checking > ...[snip]... I'm not sure but this could be because of some

Re: [PHP] can a popup window get the page referer?

2002-11-13 Thread @ Edwin
Hello, "Joseph Szobody" <[EMAIL PROTECTED]> wrote: > Folks, I have a popup window that I would like to put a mild security > constraint on. I don't want others to be able to directly type in the address > of this page, modify url parameters, etc. ...[snip]... Just wondering... Why, can't you ju

Re: [PHP] can a popup window get the page referer?

2002-11-13 Thread @ Edwin
"Brent Baisley" <[EMAIL PROTECTED]> wrote: > While this works pretty well under Windows, it does not work on the Mac. > A new window will be generated with the requested properties except for > the menus thing. The Mac UI always has the menu at the top of the screen > and are not associated with

Re: [PHP] Works in html, not when echoed in PHP

2002-11-13 Thread @ Edwin
"Aaron Merrick" <[EMAIL PROTECTED]> wrote: > You are right, there is a reason I am echoing it in php, it is one result of > an if statement. Well, I thought so :) ...[snip]... > I tried echoing with single quotes - no change. So I compared the view > source of the double quoted php generated p

Re: [PHP] can a popup window get the page referer?

2002-11-13 Thread @ Edwin
(BMessage-ID: <[EMAIL PROTECTED]> (BReferences: <[EMAIL PROTECTED]> (B (B"Joseph Szobody" <[EMAIL PROTECTED]> wrote: (B>Actually, it still won't work under Windows. (B> Even on a pop-up window, you can right click, (B> view properties, copy the page address, open (B> a new browser window,

Re: [PHP] can a popup window get the page referer?

2002-11-13 Thread @ Edwin
(B (B"bahwi" <[EMAIL PROTECTED]> wrote: (B (B> Because you can only do that with JavaScript, and that still assures (B> nothing. You can always just download the source of an HTML page with no (B> problems. In UNIX with libwww installed you just type GET (B> http://www.microsoft.com/ and it

Re: [PHP] can a popup window get the page referer?

2002-11-13 Thread @ Edwin
Hello, "Justin French" <[EMAIL PROTECTED]> wrote: > It still seems to me that there must be a fundamental problem with the > application design if such great lengths / work-arounds / patch jobs need to > be applied. > > But that's probably another discussion altogether :) Well, I agree. Besides

Re: [PHP] passing multiple variables in a url

2002-11-14 Thread @ Edwin
And... --- CJ <[EMAIL PROTECTED]> wrote: ...[snip]... > > Also is this a big security risk as I will be > > echoing the 2nd variable as the contents of a form field. > > Would it be possible for someone to type in > > the URL with HTML/php in it that would make a mess > > of everything? Well, i

Re: [PHP] passing multiple variables in a url

2002-11-14 Thread @ Edwin
And if you want your pages to be valid xhtml, make sure that you have quotes: Also, be sure to use "&" instead of just "&". - E "Adam Williams" <[EMAIL PROTECTED]> wrote: > Change the space in job enquiry to a + > > Adam > > On 14 Nov 2002, BigDog wrote: > > > Does this not work... > > > >

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.ne

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 writ

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

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.

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.p

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 u

Re: [PHP] Re: GD 1.5

2002-11-15 Thread @ Edwin
Hello, IANAL, so... "Mako Shark" <[EMAIL PROTECTED]> wrote: > < 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 someo

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...) > >

Re: [PHP] running php as cgi script

2002-11-15 Thread @ Edwin
Hello, "Scott" <[EMAIL PROTECTED]> wrote: > > Forgot to include the error I'm getting is: > > CGIwrap Error: System Error: execv() failed > > Error: No such file or directory (2) > > Although the file and path are correct. > Are you sure it's correct? Most cgi-bin folders are located outside you

Re: [PHP] running php as cgi script

2002-11-15 Thread @ Edwin
"Scott" <[EMAIL PROTECTED]> wrote: > I'm trying to run a simple test php script as a cgi script on my ISP's server > and haven't been able to get it to work, although according them it is > possible. > > I have an example from a book which gives the following steps: > > 1. Put the script in the

Re: [PHP] running php as cgi script

2002-11-15 Thread @ Edwin
... and yes, you forgot the semi-colon :) Also, are you trying to do something like these? http://www.phpbeginner.com/columns/ray/cli - E -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Strings and php.ini

2002-11-15 Thread @ Edwin
Hello, (B (B"Khalid El-Kary" <[EMAIL PROTECTED]>wrote: (B> hi, (B> (B> are there any php.ini directives that control the PHP string functions? (B (BYou mean something like this? (Under "; Safe Mode") (B (B-> (B; This directive allows you to disable certain functions for security (Bre

Re: [PHP] running php as cgi script

2002-11-15 Thread @ Edwin
Hello Marco, (B (B"Marco Tabini" <[EMAIL PROTECTED]> wrote: (B (B> If you look at the error he's getting, I think there's something a bit (B> more critical than the PHP tags... (B (BYou're right. Most probably there's something more... (B (B> although you're right and I missed (B> that :-

Re: [PHP] Strings and php.ini

2002-11-16 Thread @ Edwin
(B"Khalid El-Kary" <[EMAIL PROTECTED]> wrote: (B> hi, (B> infact i'm un (B> able to obtain a copy of my hosting company's php.ini (B (BThen, perhaps, try running phpinfo() and compare. (B (BI think it might even have something to do with "register_globals". (B (B- E (B (B (B-- (BPH

Re: [PHP] Strings and php.ini

2002-11-16 Thread @ Edwin
n String functions? (B (BGenerally no, I don't think so. (B (B> encoding for example? (B (BIt's possible that they are different but you can check phpinfo(). (B (BAlso, if you're using multi-byte functions there's a possibility that your (Bthe company you're us

Re: [PHP] Opening a file to manipulate it

2002-11-16 Thread @ Edwin
Hello, "Troy May" <[EMAIL PROTECTED]> wrote: > Hello, > > Extreme newbie here (halfway through my first book :) ). I need to open a > file, read the whole file into a variable, manipulate it, and then echo it > to the screen. I'm doing it right from my book and it's not working. > Here's what I

Re: [PHP] Strings and php.ini

2002-11-16 Thread @ Edwin
Hello, (B (B"Khalid El-Kary" <[EMAIL PROTECTED]> wrote: (B> hi, (B> i was asking if there should be difference in functionality of PH string (B> functions (not mb_) between the two following configurations: (B> (B> the company: PHP 4.2.1, Apache 1.3.20, linux (B> me: PHP 4.2.3, Apache 1.3.2

[PHP] Re: Misbehaved Script...

2002-11-19 Thread @ Edwin
Hello, (B (B"Kondwani Spike Mkandawire" <[EMAIL PROTECTED]> wrote in message (B[EMAIL PROTECTED]">news:[EMAIL PROTECTED]... (B> Hi folks: (B> (B> Have any of you guys encountered the following error: (B> (B> CGI Error (B> The specified CGI application misbehaved by not returning a complete

Re: [PHP] What is the best site for PHP news, articles, resources etc....

2002-11-19 Thread @ Edwin
Hello, "Phil Schwarzmann" <[EMAIL PROTECTED]> wrote: > Let's say you had one site and one site only to get the latest PHP/MySQL > news, articles, reviews, resources, tutorials, advanced stuff etc. > > What would it be?!? http://www.phpbuilder.com/ ? Give me another choice :) http://w

Re: [PHP] Looking for compiled Windows PHP installation with multistring fts support

2002-11-19 Thread @ Edwin
Hello, "Simon Dedeyne" <[EMAIL PROTECTED]> wrote: > > Hi, > > Does anybody know where to find a pre-compiled Windows (XP) version of > PHP that includes multistring functions? I checked phpdev on firegpages > and other sites that usually hold these installations but their versions > don't suppo

Re: [PHP] Getting info from users comp?

2002-11-19 Thread @ Edwin
Hello, "John Yamokoski" <[EMAIL PROTECTED]> wrote: > I am new to PHP but wanted to know if its possible to do the following with > PHP. > > I want to grab the size of the users RAM and the speed of the users CPU. Is > this even possible with PHP since its a server side language?? > > And if its no

Re: [PHP] New commercial software needs beta testers

2002-11-19 Thread @ Edwin
"Jeremy Wilson" <[EMAIL PROTECTED]> wrote: > Well fine... by reading a bunch of your other posts when you talk to > people, it looks like you are just a rude SOB... so I am really not > offended. Who is offending who? You attacked a ml with a spam (yes, it's spam) and now you're attacking people

Re: [PHP] Stripping HTML tags, but keeping entities...

2002-11-20 Thread @ Edwin
Hello, (B (B"David Russell" <[EMAIL PROTECTED]> wrote: (B (B...[snip]... (B (B> Strip_tags removes all info after the < sign. Obviously I would like to (B> convert it to a > entity, but how can I do both of these? (B (BHave you tried this? (B (B http://www.php.net/manual/en/function.p

Re: [PHP] pass file data through forms

2002-11-20 Thread @ Edwin
Hello, "??? ?ta?" <[EMAIL PROTECTED]> wrote: > Is there any way of submitting a file , pass all the data for it throuhg > another form and upload from another form? I'm not sure if I understand your question correctly but you can try using the sample code in the manual for uploading file

Re: [PHP] flush() issue

2002-11-20 Thread @ Edwin
Hello, "Andrew Brampton" <[EMAIL PROTECTED]> wrote: > Are you outputing each row in a table? > IE won't start displaying the table until the tag, that might be > causing your problem... ...then, CSS to the rescue... :) Try this: ... HTH, - E -- PHP General Mailing List (http://w

Re: [PHP] manage Form data

2002-11-20 Thread @ Edwin
Hello, "??? ?ta?" <[EMAIL PROTECTED]> wrote: > Can you show me an example? I already tried that but it doesn't work... Please don't get me wrong but... Saying that "it doesn't work..." doesn't work either. You have to at least help others to help you. Show some codes, error messages, et

Re: [PHP] Pause for user input?

2002-11-20 Thread @ Edwin
Hello, "Larry Brown" <[EMAIL PROTECTED]> wrote: > Does anyone know of a method to pause during the processing of a script to > prompt a user for information and then incorporate the user's response for > the remainder of the script? ... in addition to what the others already said, let me just as

Re: [PHP] scrolling data from db

2002-11-20 Thread @ Edwin
Hello, "Edward Peloke" <[EMAIL PROTECTED]> wrote: > I have a large amount of data to present to the user. Currently, I am just > putting it in a table and displaying it on the page, if it is more than a > page of course the page just scrolls. Is there a way o, without using > frames, to put all

Re: [PHP] Looking for compiled Windows PHP installation with multistring fts support

2002-11-20 Thread @ Edwin
Hello, "Simon Dedeyne" <[EMAIL PROTECTED]> wrote: > > Sorry, I meant multibyte strings, like when you want to display > Japanese. ...well, then, you can find one here: (Japanese site) http://www.geocities.jp/rui_hirokawa/php/ or, download the file directly: http://www.geocities.jp/rui_hir

Re: [PHP] Server-server file copy question

2002-11-20 Thread @ Edwin
Hello, "Richard Fox" <[EMAIL PROTECTED]> wrote: > Hi, > > I am using PHP 4.4.2.. I need a function to copy a file from one server to > another. The src/dst filenames are relative to the Document Root of the website, > but I can build an absolute path name if necessary. I can't use ftp because the

Re: [PHP] Pause for user input?

2002-11-20 Thread @ Edwin
"Larry Brown" <[EMAIL PROTECTED]> wrote: > The idea is to have the script start to load, prompt for a question or more, > then use the data from the response to complete loading the page and avoid > having to post all of the variables from page to page to get all of the > responses back. A lot o

Re: [PHP] help needed with forms

2002-11-21 Thread @ Edwin
Hello, "Van Andel, Robert" <[EMAIL PROTECTED]> wrote: > Sounds like JavaScript would be the answer here. You can use a javascript > function to validate the form before it is even submitted. Yes, perhaps. But people can turn off JavaScript so you might want to use JavaScript AND PHP to validate

Re: [PHP] Getting info from users comp?

2002-11-21 Thread @ Edwin
Hello, "-<[ Rene Brehmer ]>-" <[EMAIL PROTECTED]> wrote: > Hi @ Edwin, > > On Wed, 20 Nov 2002 01:24:18 +0900, you wrote about "Re: [PHP] Getting > info from users comp?" something that looked like this: > > >> And if its not possible wi

Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-21 Thread @ Edwin
Hello, "-<[ Rene Brehmer ]>-" <[EMAIL PROTECTED]> wrote: > I've run into something I don't understand... > > This is my test code: > > $premieredag = > array("2002-11-22","2002-11-29","2002-12-06","2002-12-18"); > $d20021122 = array("001"); > $d20021129 = array("002","003","004"); > $d2

Re: [PHP] FTP_SITE and FTP_EXEC prob

2002-11-21 Thread @ Edwin
Hello, "António Godinho" <[EMAIL PROTECTED]> wrote: [snip] > Here's the code: > ftp_exec($conn_id,"site chmod 755 /home/to/public_html/index.php"); > > I tried with ftp_exec and ftp_site, any advice? [/snip] Have you tried it without the word "site"? Like: ftp_exec($conn, "chmod... "); Have

Re: [PHP] Getting info from users comp?

2002-11-22 Thread @ Edwin
Hello, "Ernest E Vogelsinger" <[EMAIL PROTECTED]> wrote: > So you're talking about a Trojan, do you? No, not really. I was talking about "legitimate" programs run by the users themselves. - E -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.ph

Re: [PHP] Getting info from users comp?

2002-11-22 Thread @ Edwin
"Ernest E Vogelsinger" <[EMAIL PROTECTED]> wrote: > Of course it is possible for any application running locally to fetch any > data about your hardware - e.g. M$ does it with their semi-automatic bug > reporting feature (in Win XP). However you'd need hardware and OS specific > applications to a

Re: [PHP] Japanese on a page

2003-09-15 Thread - Edwin -
Hi, On Fri, 12 Sep 2003 12:24:33 -0700 "Chris W. Parker" <[EMAIL PROTECTED]> wrote: > (now to the entire list) > > Mark McCulligh > on Friday, September 12, 2003 11:48 AM said: > > > I am trying to create both an English and Japanese version of a site. > > The Eng

Re: [PHP] abreviating echo commands

2003-09-15 Thread - Edwin -
Hi, Kris Yates <[EMAIL PROTECTED]> wrote: > Hello.. > > I forget where but I found some source awhile back that abbreviated > echo. It was something like > which worked the same as . Maybe it was > .. Obviously I dont remember.. which is why I am asking.. > :) Does anyone have a link to

Re: [PHP] Re: PHP|Con insane pricing

2003-09-15 Thread - Edwin -
Hi, "John W. Holmes" <[EMAIL PROTECTED]> wrote: > Jeremy Brand, B.S. wrote: > > Thanks to everyone for their responses, though I still have not found a > > way to get to the conference at a reasonable price (what I consider > > reasonable). > > > > If anyone has any comments other than justify

Re: [PHP] Protecting a file via PHP.

2003-09-16 Thread - Edwin -
Hi, "Steve Jackson" <[EMAIL PROTECTED]> wrote: > I just read this: > http://zend.com/zend/trick/tricks-august-2001.php > To protect a file via PHP. Didn't really read this but... > What does this part mean in the serving the files part: > define('FILEDIR', '/mnt/dos/'); > > Do I define th

Re: [PHP] Using 'print <<

2003-09-16 Thread - Edwin -
Hi, Rudi Starcevic <[EMAIL PROTECTED]> wrote: > Hi, > > When printing like this: > > print << Hello world > END; > > Is it at all possible to use a function in the output ? > For example: > > print << strtolower("Hello World") > END; > > So far I've been unable to make it function work. Hmm

Re: [PHP] Japanese on a page

2003-09-16 Thread - Edwin -
Hi, "Chris W. Parker" <[EMAIL PROTECTED]> wrote: > - Edwin - <mailto:[EMAIL PROTECTED]> > on Monday, September 15, 2003 9:45 PM said: > > > Or, you can just declare it inside you're tags (as mentioned > > previously). Also, depending

Re: [PHP] Japanese on a page

2003-09-18 Thread - Edwin -
"Chris W. Parker" <[EMAIL PROTECTED]> wrote: > - Edwin - <mailto:[EMAIL PROTECTED]> > on Tuesday, September 16, 2003 5:53 PM said: > > This japanese page thing was a project I started at home so now that I'm > at work I'll do my best to respo

Re: Re[2]: [PHP] MySQL timestamp to desired date function

2003-09-18 Thread - Edwin -
Hi, Tom Rogers <[EMAIL PROTECTED]> wrote: [snip] > what database are you using? [/snip] See "Subject" line? Or, is this a trick question? :) (Sorry, couldn't resist :) ) - E - __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.

Re: [PHP] Session data getting lost

2003-09-18 Thread - Edwin -
Hi, "Rich Gray" <[EMAIL PROTECTED]> wrote: > Well a functon that doesn't work under certain conditions should be > deprecated IMO Interesting comment... However, there are TONS of functions that wouldn't work unless the module/extension were enabled during compilation/runtime. A couple of exam

Re: [PHP] URL variables parsing error?

2003-09-18 Thread - Edwin -
Hi, [EMAIL PROTECTED] wrote: > Hi all, > > I use RedHat9.0 with Apache 2.0.40 & PHP 4.2.2 > and I have problem with parsing URL variables... > > I use this URL: http://my.domain.mine/index.php?var1=value1&var2=value2 > > and this is my index.php > >echo "var1: $var1" ; > echo "var2: $va

Re: [PHP] PHP coders spare time [OT}

2003-09-28 Thread - Edwin -
And while checking other parts of the site... Robert Cummings <[EMAIL PROTECTED]> wrote: > On Sun, 2003-09-28 at 21:50, Curt Zirzow wrote: > > And what they do with it... > > > > http://zirzow.dyndns.org/html/mlists/php_general/ > > *heheh* Most popular threads is funny, in the #3 slot is "non-

Re: [PHP] Submit button

2003-09-30 Thread - Edwin -
Hi, "Nitin" <[EMAIL PROTECTED]> wrote: > Never mind, but could you state the reason? Just guessing here... ...[snip]... > > > --- Nitin <[EMAIL PROTECTED]> wrote: > > > > > > > This is a great example of what not to do. ...because it relies on Javascript (so it's unreliable because of some

Re: [PHP] storing japanese in mysql (or pgsql)

2003-09-30 Thread - Edwin -
Hi, "Chris W. Parker" <[EMAIL PROTECTED]> wrote: > (I posted this to another list yesterday without response, so if it > looks familiar, that's why.) > > Hi. > > I'm working on a small study aid for myself (and anyone else that wants > to use it) and I could really use the ability to store Japa

Re: [PHP] PNGs & PHP feedback

2003-09-30 Thread - Edwin -
Hi, Eugene Lee <[EMAIL PROTECTED]> wrote: > On Tue, Sep 30, 2003 at 02:40:42AM -0400, Joe Harman wrote: > : > : I am looking for some guidance... I am using PHP to make dynamic > : buttons... Is the PNG image format a pretty safe thing to go with... > : Standard wise? > > PNG support in M$ IE i

Re: [PHP] PNGs & PHP feedback

2003-09-30 Thread - Edwin -
Hi, Curt Zirzow <[EMAIL PROTECTED]> wrote: [snip] > It does have a problem reading alpha channels in the pngs > though. [/snip] Quite true. (I "forgot" that part...) Though it seems like it's not a problem for the IE on Macs... ...and then I thought IE's problems were all about security and

Re: [PHP] File question

2003-10-01 Thread - Edwin -
Hi, I'm no "genius" ;) but... "ketvin" <[EMAIL PROTECTED]> wrote: > Dear geniuses, > > > A simple question here, i have a file, says, list.txt > > it is a simple text file and simple field like: > > aa , bb , cc , dd > > now i want to use php script to read that list.txt fi

Re: [PHP] Generate Receipt Number

2003-10-01 Thread - Edwin -
Hi, Just to add... Larry E. Ullman <[EMAIL PROTECTED]> wrote: > >I am doing a receipt system whereby it can auto generate a > > unique receipt > > number for each receipt. It will be an increment of number > > eg.01, 02, > > 03, and so on.Wonder how should I go about doi

Re: [PHP] PNGs & PHP feedback

2003-10-01 Thread - Edwin -
(Sorry if this is becoming OT...) Eugene Lee <[EMAIL PROTECTED]> wrote: > (about M$IE and PNG) > > On Wed, Oct 01, 2003 at 11:31:46AM +0900, - Edwin - wrote: > : > : Curt Zirzow <[EMAIL PROTECTED]> wrote: > : > > : > It does have a problem read

Re: [PHP] File question

2003-10-01 Thread - Edwin -
Hi Raditha, Raditha Dissanayake <[EMAIL PROTECTED]> wrote: > Hi Edwin, > Didn't you read the disclaimer? you could be in serious trouble. ...[snip]... Disclaimer? No, not really. I've been sleeping for a long time... Maybe, y

Re: [PHP] File question

2003-10-01 Thread - Edwin -
Hehe... - Edwin - <[EMAIL PROTECTED]> wrote: > Hi Raditha, > > Raditha Dissanayake <[EMAIL PROTECTED]> wrote: > > > Hi Edwin, > > Didn't you read the disclaimer? you could be in serious trouble. > > ...[snip]... > > Disclaimer? No, not

Re: [PHP] getting image width,height

2003-10-01 Thread - Edwin -
Hi, "Fatih Olcer" <[EMAIL PROTECTED]> wrote: > how can i get the image width and height ? http://www.php.net/function.getimagesize ? Or, is this a trick question? :) - E - __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp

Re: [PHP] PNGs & PHP feedback

2003-10-01 Thread - Edwin -
On Wed, 1 Oct 2003 03:03:42 -0500 Eugene Lee <[EMAIL PROTECTED]> wrote: ...[snip]... > Yep, M$ has halted development of IE for the Mac for a while. But > except for your regularly scheduled security fixes, M$ has halted > development of IE for Windoze as well! ?? That's new! ('Must have been i

Re: [PHP] storing japanese in mysql (or pgsql)

2003-10-01 Thread - Edwin -
On Wed, 1 Oct 2003 09:10:05 -0700 "Chris W. Parker" <[EMAIL PROTECTED]> wrote: > - Edwin - <mailto:[EMAIL PROTECTED]> > on Tuesday, September 30, 2003 7:00 PM said: > > > What exactly do you mean by "extended characters"? And, do you > &

Re: [PHP] Variables not passed on localhost setup

2003-10-02 Thread - Edwin -
Hi, On Thu, 2 Oct 2003 09:26:37 +0200 "Angelo Zanetti" <[EMAIL PROTECTED]> wrote: > with regard to register_globals being off, what kind of security > implications are there? And what would you define as badly/poorly > written php code? Here's a (simple) example: http://www.php.net/manual/en/

Re: [PHP] Help with treeview

2003-10-02 Thread - Edwin -
Hi, On Thu, 2 Oct 2003 15:18:48 +1000 "Stephen" <[EMAIL PROTECTED]> wrote: > Does anyone know how to implement a treeview style display in PHP? Hmm... what exactly do you mean by "treeview"? Anyway, *I think* this is more of a Javascript/HTML question... So, find a site that uses "treeview" then

Re: [PHP] CURL + https

2003-10-02 Thread - Edwin -
Hi, On Wed, 1 Oct 2003 14:14:11 +0200 "Yonatan Ben-Nes" <[EMAIL PROTECTED]> wrote: > well when i try to work with curl through the shell it work fine > without any problems more then that when i use the curl with php > at my server to another page at my server its working fine also, > just wh

Re: [PHP] Attempt at putting greedy htmlspecialchars on a diet

2003-10-02 Thread - Edwin -
On Thu, 2 Oct 2003 01:54:43 -0500 Eugene Lee <[EMAIL PROTECTED]> wrote: > On Wed, Oct 01, 2003 at 02:46:14PM -0400, Gerard Samuel wrote: > : > : When I say that I don't know what characters Im expecting. > : Im not talking about normal html entities, like &   < > : Im talking about chinese/japane

Re: [PHP] Attempt at putting greedy htmlspecialchars on a diet

2003-10-02 Thread - Edwin -
But, On Wed, 01 Oct 2003 14:46:14 -0400 Gerard Samuel <[EMAIL PROTECTED]> wrote: ...[snip]... > When I say that I don't know what characters Im expecting. > Im not talking about normal html entities, like &   < > Im talking about chinese/japanese/korean/taiwanese alphabet, numbers > > (even pun

Re: [PHP] Attempt at putting greedy htmlspecialchars on a diet

2003-10-02 Thread - Edwin -
On Thu, 2 Oct 2003 03:58:48 -0500 Eugene Lee <[EMAIL PROTECTED]> wrote: > On Thu, Oct 02, 2003 at 05:15:32PM +0900, - Edwin - wrote: > : > : On Thu, 2 Oct 2003 01:54:43 -0500 Eugene Lee <[EMAIL PROTECTED]> > wrote:: > > : > There's two issues: input a

Re: [PHP] Attempt at putting greedy htmlspecialchars on a diet

2003-10-09 Thread - Edwin -
Hi, (Long time...) On Sat, 04 Oct 2003 21:01:46 -0400 Gerard Samuel <[EMAIL PROTECTED]> wrote: > - Edwin - wrote: > > > "Far east languages" are not necessarily in this form: "&#n;" > > So, > > > >running htmlspecialch

Re: [PHP] attach file with mail() function??

2003-10-09 Thread - Edwin -
Hi, On Sun, 05 Oct 2003 20:36:51 -0500 John Nichel <[EMAIL PROTECTED]> wrote: > Jason Wong wrote: > > On Monday 06 October 2003 07:34, Roy W wrote: > > > >>Is there a way to attach a file with the mail() function? > > > > > > Yes. > > > > Is there a way to have PHP print out "Hello World"?

Re: [PHP] [O|T] XML/XHTML

2003-10-09 Thread - Edwin -
Hi, On Mon, 6 Oct 2003 05:54:03 -0400 "Becoming Digital" <[EMAIL PROTECTED]> wrote: > A friend asked me to recommend a good XML/XHTML reference or guide. > I was able to point him to a number of websites, but he said that he > would prefer a book. Sadly, I don't know of any, so I'm hoping some

Re: [PHP] email certain people

2003-10-09 Thread - Edwin -
On Thu, 9 Oct 2003 22:42:19 -0400 "Davy Campano" <[EMAIL PROTECTED]> wrote: > I forgot to mention that I want the email addresses to be appear on > the webpage from a mySQL database. I already have the emails > entered into a database, and I have written the page that grabs each > email from the

Re: [PHP] Appropriate Content

2003-10-09 Thread - Edwin -
Hi, On 09 Oct 2003 01:04:06 -0400 Robert Cummings <[EMAIL PROTECTED]> wrote: > On Thu, 2003-10-09 at 01:12, Chris Shiflett wrote: > > --- Evan Nemerson <[EMAIL PROTECTED]> wrote: > > > Robert had the courtesy to put [ANNOUNCMENT] in the header. > > > > Yes, a courtesy which is appreciated by man

Re: [PHP] data type conversion in mysql using php

2003-10-20 Thread - Edwin -
Hello, On Tue, 21 Oct 2003 11:45:30 +0530 (IST) "Uma Shankari T." <[EMAIL PROTECTED]> wrote: > Hello, > >Is it possible to update the float value of mysql to varchar >field by > using php ?? 'Not sure if I understood the question correctly but if you want to change the column type of

Re: [PHP] cache control with javascript

2003-10-20 Thread - Edwin -
On Mon, 20 Oct 2003 14:44:50 -0400 "Joshua Minnie" <[EMAIL PROTECTED]> wrote: > Does anybody know how I can make force a javascript file (written in > PHP) to be cached if the user agent allows it? > > Here is the situation: > I am creating a dropdown menu system that contains a customer list, >

Re: Re[4]: [PHP] Re: Tom->Re: [PHP] session hijacking

2003-10-20 Thread - Edwin -
Hi, On Tue, 21 Oct 2003 14:02:58 +1000 Tom Rogers <[EMAIL PROTECTED]> wrote: > Hi, > > Tuesday, October 21, 2003, 1:40:20 PM, you wrote: > > OMH> One other thing.. What's the difference in $$ for a site to be > OMH> https rather than http?? Cos you need to get a verisign cert > OMH> or somethi

Re: [PHP] gmdate problem

2003-10-20 Thread - Edwin -
Hi, On Tue, 21 Oct 2003 12:44:38 +0800 [EMAIL PROTECTED] wrote: > > Hi all, >Having some problem with 'gmdate' here. However, the time >doesn't match > with the current time on the system. What could be the problem? Do I > have to set any timezone or stuff like that?...Hope to

Re: [PHP] mailing labels from databases

2003-10-21 Thread - Edwin -
Hello, On Mon, 20 Oct 2003 22:48:20 -0700 Dennis Gearon <[EMAIL PROTECTED]> wrote: ...[snip]... > Is it possible to set postions of characters, lines, tables, etc in > PDF via: > pixels > page percentages > absolute distances > using PHP? -> http://www.php.net/manual/en/ref.pdf.ph

Re: [PHP] Test Connection - fsockopen()

2003-10-21 Thread - Edwin -
On Tue, 21 Oct 2003 00:04:14 -0700 Jason Williard <[EMAIL PROTECTED]> wrote: > I am trying to create a remote status page for my website. So far, > I have found the fsockopen() function and used the example code to > create the following basic script: > > $fp = fsockopen ("xxx.xxx.xxx.xxx", 80,

Re: [PHP] (ANNOUNCE) New PHP mailing list *searchable* archives

2003-10-21 Thread - Edwin -
Hi, On 2003.10.21, at 23:42 Asia/Tokyo, Marco Tabini wrote: Nice work, if the list admin would add a link to this archive in the footer (or the header) it would be even useful for new subscribers who don't know of its existence. Well, one of my original ideas was to have a process that would m

Re: [PHP] cache control with javascript

2003-10-21 Thread - Edwin -
On 2003.10.21, at 22:28 Asia/Tokyo, Joshua Minnie wrote: The "it" that you were asking about was the server. The javascript file is actually a PHP file that produces the JavaScript that I need. I only have one access to a database and a while loop to generate the code. Here is the code piece

Re: [PHP] there has to be a better way...

2003-10-22 Thread - Edwin -
On Wed, 22 Oct 2003 03:10:44 -0500 "jsWalter" <[EMAIL PROTECTED]> wrote: [snip] > There must be a better way to do this. [/snip] http://www.php.net/manual/en/function.parse-ini-file.php ? - E - __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! h

Re: [PHP] Upgrading GD...

2003-10-28 Thread - Edwin -
On Tue, 28 Oct 2003 01:26:05 -0500 Leif K-Brooks <[EMAIL PROTECTED]> wrote: > Ryan Thompson wrote: > > >Just a thought. Try using phpinfo() to find out the compile > >options. Use that and just add the GD compile options after > >upgrading GD. That's usually how I go about adding a new module. I

<    1   2   3   4   5   6   >