[PHP] Japanese character validation

2003-11-07 Thread umesh
Hi Gurus, (B (BI am new to PHP. I am using PHP4 on Linux. (B (BI have accept input from the user and check if the input is japanese (Bcharacter only, (Bfor example : If name is accepted , I need to check if its any of the (BHiragana, Katakana or Kanji. (B (BI have enabled multibyte

[PHP] PHP developers

2003-11-07 Thread James
Can anyone recommend a good place where I can find some talented PHP contractors? I'm looking to hire some people for some upcoming projects, and I don't want to just put an ad in the paper and get a bunch of responses from barely-qualified people. Thanks, J -- PHP General Mailing List

[PHP] php.net links

2003-11-07 Thread Dan Zarrella
hello, i was wondering who i would need to contact to submit my site to the php.net links page. my site is stargeek.com, thanks -dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Japanese character validation

2003-11-07 Thread - Edwin -
Hi, On Fri, 7 Nov 2003 12:58:51 +0530 umesh [EMAIL PROTECTED] wrote: Hi Gurus, I am new to PHP. I am using PHP4 on Linux. I have accept input from the user and check if the input is japanese character only, for example : If name is accepted , I need to check if its any of the Hiragana,

[PHP] passing random variables names

2003-11-07 Thread Yonatan Ben-Nes
Hi all, I made a form which pass constant variables which never change (Ex. product_name) and dynamic variables which i withdraw from the db (Ex. attribute_id = 1, value = color). Now my problem is with the passing of the dynamic variables. Because the fields can change their name (id's) i need

Re: [PHP] passing random variables names

2003-11-07 Thread Jacob Vennervald
On Fri, 2003-11-07 at 09:40, Yonatan Ben-Nes wrote: Hi all, I made a form which pass constant variables which never change (Ex. product_name) and dynamic variables which i withdraw from the db (Ex. attribute_id = 1, value = color). Now my problem is with the passing of the dynamic

[PHP] trouble with forcing output to be cached

2003-11-07 Thread Ilja Polivanov
Hallo all, I would like to force PHP generated images to cache on client-side. just for reduce traffic and speed of pageloading. The problem is that PHP adds some headers by default, They are: Cache-Control : no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma : no-cache :) it

RE: [PHP] PHP developers

2003-11-07 Thread Boaz Yahav
http://www.weberdev.com/jobmatching/about.php3 Sincerely berber Visit http://www.weberdev.com/ http://www.weberblog.com/ Today!!! To see where PHP might take you tomorrow. Share your code : http://addexample.weberdev.com Search for PHP Code from your browser http://toolbar.weberdev.com Share

RE: [PHP] Japanese character validation

2003-11-07 Thread umesh
Hi Edwin, Original Message- From: - Edwin - [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 2:02 PM To: umesh Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Japanese character validation Hi, On Fri, 7 Nov 2003 12:58:51 +0530 umesh [EMAIL PROTECTED] wrote: Hi Gurus, I am new to

Re: [PHP] Japanese character validation

2003-11-07 Thread Marek Kilimajer
umesh wrote: As there are fields called Last First Name (Kanji) and Last First name (Kana) on my forms. Its the need of the application. It would be great, If I could do that. Are Kanji and Kana chracter sets? Form cannot use more charsets. Charset that your script receives will be the same

[PHP] SQL Injections

2003-11-07 Thread Shaun
Hi, does anyone know of a function i can include in my scrpits to ensure all $_POST values sent from a page don't include any SQL? Thanks for your help -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Multiple Image Uploads

2003-11-07 Thread Marek Kilimajer
Jay Fitzgerald wrote: I tried posting my code to the list but there are around 800+ lines of code and my email keeps bouncingi am open to suggestions? Jay Only 500+. And all that I need to know is that Undefined index notice. Search the archives for that string. Marek -- PHP General

[PHP] Cross Site Scripting

2003-11-07 Thread Shaun
Hi, Is there a way to filter metacharacters from all $_POST values sent from pages on my site in an effort to eliminate the majority of XSS attacks? Thanks for your help -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Japanese character validation

2003-11-07 Thread umesh
No, Kanji Kana are not charsets. The form is having charset EUC-JP. Umesh. -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 3:08 PM To: umesh Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Japanese character validation umesh wrote: As there

[PHP] How can i run DOS command from browser

2003-11-07 Thread imran
Hi, Any one know that how can me run a script from command line after receving the input from FORM thru browser thnx

[PHP] PHP Conf 2004 Sofia, Bulgaria

2003-11-07 Thread Mr. Bogomil Shopov
The first Web Technology conference in Bulgaria will be held in March 2004 at the city of Sofia. Within its framework, the first PHP conference will be held. The purpose of this meeting is to discuss the new tendencies in this direction and to popularize the Internet technologies in the

RE: [PHP] passing random variables names

2003-11-07 Thread Ford, Mike [LSS]
On 07 November 2003 08:41, Yonatan Ben-Nes wrote: Hi all, I made a form which pass constant variables which never change (Ex. product_name) and dynamic variables which i withdraw from the db (Ex. attribute_id = 1, value = color). Now my problem is with the passing of the dynamic variables.

Re: [PHP] Cross Site Scripting

2003-11-07 Thread Burhan Khalid
Shaun wrote: Hi, Is there a way to filter metacharacters from all $_POST values sent from pages on my site in an effort to eliminate the majority of XSS attacks? htmlentities() preg_match_all() -- Burhan Khalid phplist[at]meidomus[dot]com http://www.meidomus.com ---

Re: [PHP] SQL Injections

2003-11-07 Thread Burhan Khalid
Shaun wrote: Hi, does anyone know of a function i can include in my scrpits to ensure all $_POST values sent from a page don't include any SQL? preg_match_all() -- Burhan Khalid phplist[at]meidomus[dot]com http://www.meidomus.com --- Documentation is like sex: when it is

Re: [PHP] SQL Injections

2003-11-07 Thread Eugene Lee
On Fri, Nov 07, 2003 at 09:43:20AM -, Shaun wrote: : : does anyone know of a function i can include in my scrpits to ensure all : $_POST values sent from a page don't include any SQL? If you're using MySQL, look at mysql_escape_string(). -- PHP General Mailing List (http://www.php.net/) To

[PHP] How to support Multi Lingual characters

2003-11-07 Thread K. Praveen Kumar
Dear List, I would like to support Multi lingual characters using PHP in my application. How can I support? Does PHP automatically supports this feature. Please let me know. I will be really waiting for your suggestions -- Thanks Regards Praveen Kumar SoftPro Systems Ltd -- PHP

RE: [PHP] How to support Multi Lingual characters

2003-11-07 Thread umesh
(Byes, though compile PHP with japanese support, you can accept input in (BEnglish as well. (B (BUmesh. (B (B-Original Message- (BFrom: K. Praveen Kumar [mailto:[EMAIL PROTECTED] (BSent: Friday, November 07, 2003 4:16 PM (BTo: [EMAIL PROTECTED]; Praveen Kumar (BSubject: [PHP]

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Burhan Khalid
Pablo Gosse wrote: Hi Burhan. I have a quick question about what you write below that I don't want to post to the whole list? What is it meant to top post? I've mainly been a lurker in forums such as phpbuilder and devshed until recently, but this list is proving to be a much better resource

RE: [PHP] How to support Multi Lingual characters

2003-11-07 Thread K. Praveen Kumar
Dear Umesh, Thanks for your quick reply. Let me explain the scenario: We have an application in English. The data will be stored in MySQL database. If some body enter the data using Japanese keyboard (Japanese language) that will be stored in Japanese language only and should display in the

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Eugene Lee
On Fri, Nov 07, 2003 at 01:55:45PM +0300, Burhan Khalid wrote: : : Pablo Gosse wrote: : : What is it meant to top post? I've mainly been a lurker in forums : such as phpbuilder and devshed until recently, but this list is : proving to be a much better resource than those two. : : Top post

Re: [PHP] SQL Injections

2003-11-07 Thread Marek Kilimajer
If you delete all reserved words from a string then this sentence would become: you reserved words a this sentence would become :) You want to ensure the incoming variables are not INTERPRETED as sql. Properly escape and quote the input. Shaun wrote: Hi, does anyone know of a function i can

RE: [PHP] Source code

2003-11-07 Thread PHPLover
Dear Chris, Thanks for the response. 1. What I want is to view the files offline. Is there any thing like Anonymous FTP or a zipped version of the entire site? 2. How can I see the php version of the documentation. I didn’t find the php version any where in the documentation. Thanks Regards,

RE: [PHP] How to support Multi Lingual characters

2003-11-07 Thread umesh
(BDear Praveen, (B (BYes, you can do it very easily, first of all, please see if you have (Bcompiled PHP with multibyte support, (Bif not you will have to recompile the PHP with follow. options (B--enable-mbstring=all or --enable-mbstring ( will enable only Japanese (Blanguage support) (B

RE: [PHP] How to support Multi Lingual characters

2003-11-07 Thread umesh
Please refer the follow. URL. (B (Bhttp://www.php.net/manual/en/ref.mbstring.php (B (B-Original Message- (BFrom: K. Praveen Kumar [mailto:[EMAIL PROTECTED] (BSent: Friday, November 07, 2003 4:39 PM (BTo: umesh (BCc: [EMAIL PROTECTED] (BSubject: RE: [PHP] How to support Multi

[PHP] Re: How can i run DOS command from browser

2003-11-07 Thread pete M
from the manual ?php echo 'pre'; // Outputs all the result of shellcommand ls, and returns // the last output line into $last_line. Stores the return value // of the shell command in $retval. $last_line = system('ls', $retval); // Printing additional info echo ' /pre hrLast line of the output:

[PHP] Re: trouble with forcing output to be cached

2003-11-07 Thread pete M
This posting has made me think.. Problem is server side because the script executes to create the image and the script runs every time.. Try writing out the image to a file and then send that to the browser psuedo code if image NOT exists create it write to file embed file pete Ilja Polivanov

[PHP] Re: mysql_field_type() ...

2003-11-07 Thread David Robley
In article [EMAIL PROTECTED], [EMAIL PROTECTED] says... ...will say if a field is of type ENUM, but not its possible values (including default). Does anyone know how I can fetch possible values of a field type of ENUM? Thanks. ...Rene Try this little function which I use as an

Re: [PHP] [Stats] PHP Net List: October 2003

2003-11-07 Thread David Robley
In article [EMAIL PROTECTED], [EMAIL PROTECTED] says... Probably because nobody wants to risk offending John--or (more likely) because no one will admit knowing who the other John Holmes is ;-) Cheers, Marco -- php|architect - The Magazine for PHP

Re: [PHP] How can i run DOS command from browser

2003-11-07 Thread John W. Holmes
imran wrote: Any one know that how can me run a script from command line after receving the input from FORM thru browser Assuming your talking about running a program on the server, take a look at exec(). If you're wanting to run something on the user's computer, ummm, no. -- ---John

Re: [PHP] Cross Site Scripting (and SQL Injection)

2003-11-07 Thread John W. Holmes
Shaun wrote: Is there a way to filter metacharacters from all $_POST values sent from pages on my site in an effort to eliminate the majority of XSS attacks? There's no magic function that's going to protect you from Cross Site Scripting or SQL Injection. Do you honestly even know what they are

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread DvDmanDT
Oh.. I'm personally trying to avoid not top-posting, cause I think it's nicer when ppl place the message at the top where I can read it instantly without scrolling down.. :s So why bottompost? -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if

[PHP] Some Information on A Help Database Application Using PHP and XML

2003-11-07 Thread Peter Hartman (To 1886)
Et al, I'm interested in either designing or participating in a current project which utilizes PHP and XML to create a documentation application. My company (caravelcms.org) has designed a content management system using PHP and we are currently investigating how we can document effectively our

RE: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Jay Blanchard
A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on mailing lists? [snip] Oh.. I'm personally trying to avoid not top-posting, cause I think it's nicer when ppl place the message at the

[PHP] RE: BTML 2.0 released!!!

2003-11-07 Thread Rob A. Brahier
Some comments in the code would be nice too. It's too much of a bother to decipher code without indentation or comments. -Rob -Original Message- From: Bas [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 10:21 AM To: [EMAIL PROTECTED] Subject: BTML 2.0 released!!! Okay, i

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread DvDmanDT
Well, that's a bit overdue... I don't reverse the order of my posts... But anyway... I guess not everyone (you for example) follow threads like I do... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are using windows, you may be

RE: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Jay Blanchard
[snip] Well, that's a bit overdue... I don't reverse the order of my posts... But anyway... I guess not everyone (you for example) follow threads like I do... [/snip] If you top post you ARE reversing the order of the post. And everyone does not follow threads the way that you do. Top posting has

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Eric Wood
I mainly bottom-post, but sometimes top-post. I love it when snobs jump in and add no meaningful information to the technical subject of the thread (like I'm doing now) but instead get on their soap-box about you must always bottom post, blah, blah, blah, it messes up my way of reading. And for

[PHP] PHP Themes/Wallpapers

2003-11-07 Thread PHPLover
Hi, Wouldn't that be good if PHP is on the desktop. I feel that we can show our support to PHP by putting wallpapers, themes or ICON's. I can't find any themes/wallpapers with PHP logo on the net. If you find any pls let me know Thanks Regards, ___ PHPLover Göd

RE: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Jay Blanchard
[snip] snobs jump in [/snip] What is funny about that is that it is those snobs who folks ask their questions to. It is those snobs who solve problems for others. It is those snobs who have learned and experienced so that others may benefit. -- PHP General Mailing List

[PHP] Re: PHP Themes/Wallpapers

2003-11-07 Thread DvDmanDT
Isn't there things like that on the official php.net site? -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are using windows, you may be infected by Swen. Please go here to find out more:

[PHP] PHP 4.3.2, HTML and MSSQL2000

2003-11-07 Thread Rique Gresham
Hi All, I'm having trouble with a input box disappearing when using php to generate the input box. I tested this script in a test.htm and worked fine. Does it have something to do with the script being inside the div/div statement? Any help would be appreciated. Thanks div id=Oobj220

[PHP] COM and PHP.ini

2003-11-07 Thread Steve Vernon
(PHP 4.3.0, Windows XP Pro, Office 2000 Pro) Hello, Just playing around with COM, and I got the error below. Searching on google it mentions something about a DLL error. Iv'e enabled dcom in php.ini. What have I missed! Line 2 says $excel = new COM(Excel.Application) or die(Excel could not

Re: [PHP] PHP developers

2003-11-07 Thread Brent Baisley
craigslist.org, it's free and I've heard nothing but good things from people looking for, well, just about anything. But it's also a great place to find talent. On Thursday, November 6, 2003, at 12:59 PM, James wrote: Can anyone recommend a good place where I can find some talented PHP

RE: [PHP] PHP 4.3.2, HTML and MSSQL2000

2003-11-07 Thread Jay Blanchard
[snip] Does it have something to do with the script being inside the div/div statement? div id=Oobj220 style=position:absolute;z-index:74;visibility:visible; left:612px;top:96px;width:110px;height:21px; span id=Ggeo201 class=dfltt ?php echo input type=text name=reportnum size=20 value=$reportnum;

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Marek Kilimajer
Jay Blanchard wrote: [snip] snobs jump in [/snip] What is funny about that is that it is those snobs who folks ask their questions to. It is those snobs who solve problems for others. It is those snobs who have learned and experienced so that others may benefit. Hi, while we are at it, is

Re: [PHP] Cross Site Scripting

2003-11-07 Thread Chris Shiflett
--- Shaun [EMAIL PROTECTED] wrote: Is there a way to filter metacharacters from all $_POST values sent from pages on my site in an effort to eliminate the majority of XSS attacks? Yes, but it's probably more important that you understand what XSS is and what methods people use to protect

Re: [PHP] SQL Injections

2003-11-07 Thread Chris Shiflett
--- Shaun [EMAIL PROTECTED] wrote: does anyone know of a function i can include in my scrpits to ensure all $_POST values sent from a page don't include any SQL? It's only important that the data sent from the client will not be executed by your database. Depending on which database you use,

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Ryan A
Guys, I dont mean to get into your very heartfelt flaming / arguement but can you take this offlist please? Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: COM and PHP.ini

2003-11-07 Thread Mr. Bogomil Shopov
see this page http://purplerain.org/article.php ensure that are you using all necessary settings Regards Bogomil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP 4.3.2, HTML and MSSQL2000

2003-11-07 Thread pete M
echo input type='text' name='reportnum' size='20' value='$reportnum'; Rique Gresham wrote: Hi All, I'm having trouble with a input box disappearing when using php to generate the input box. I tested this script in a test.htm and worked fine. Does it have something to do with the script being

[PHP] Re: To format a number

2003-11-07 Thread zerof
This problem can be veryu simple if you are at Unix like server: http://www.php.net/localeconv [ See also setlocale() ] - zerof - [EMAIL PROTECTED] escreveu na mensagem news:[EMAIL PROTECTED] Hi, I have a little problem. I have a number for example 5 and I would it transform in 5,00. I

Re: [PHP] PHP developers

2003-11-07 Thread David T-G
James, et al -- ...and then James said... % % Can anyone recommend a good place where I can find some talented PHP % contractors? That's been discussed on this list a few times before, so the archives may be of some help to you. I'm still looking for reliable and worthwhile places to post

Re: [PHP] PHP developers

2003-11-07 Thread Lists
Try Prosavvy.com On Fri, 7 Nov 2003, David T-G wrote: James, et al -- ...and then James said... % % Can anyone recommend a good place where I can find some talented PHP % contractors? That's been discussed on this list a few times before, so the archives may be of some help to you.

[PHP] training material on PHP + MySQL + IIS + Windows 2000

2003-11-07 Thread Denis L. Menezes
Hello friends, Does anyone have a training course that can be bought or licensed for training PHP and WAMP? Thanks Denis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Japanese character validation

2003-11-07 Thread Lew Mark-Andrews
Howdy, I have accept input from the user and check if the input is japanese character only, for example : If name is accepted , I need to check if its any of the Hiragana, Katakana or Kanji. Hmm... why would you like to do that? I've never really seen the need for that. It's actually quite

[PHP] Cell Colour Change!!! HELP

2003-11-07 Thread student
I have a cell in my view.php which shows up in all my pages of my site. This is wha tI need to do: If the user is on the home page(index.php) then the cell colour should be blue. If the user is on the compose page(compose.php) then the cell colour should be green If the user in on the

Re: [PHP] training material on PHP + MySQL + IIS + Windows 2000

2003-11-07 Thread Miles Thompson
At 11:41 PM 11/7/2003 +0800, Denis L. Menezes wrote: Hello friends, Does anyone have a training course that can be bought or licensed for training PHP and WAMP? Thanks Denis Denis, That's not an easily answered question; each is a major product. Would you want a gloss, or in depth approach?

Re: [PHP] Cell Colour Change!!! HELP

2003-11-07 Thread Lowell Allen
I have a cell in my view.php which shows up in all my pages of my site. This is wha tI need to do: If the user is on the home page(index.php) then the cell colour should be blue. If the user is on the compose page(compose.php) then the cell colour should be green If the user in on the

Re: [PHP] Japanese character validation

2003-11-07 Thread - Edwin -
Hi, (B (BOn 2003.11.7, at 18:20 Asia/Tokyo, umesh wrote: (B (B...[snip]... (B (B As there are fields called Last First Name (Kanji) and Last First (B name (Kana) on my forms. Its the need of the application. (B It would be great, If I could do that. (B (BLet's say you can do that.

Re: [PHP] Japanese character validation

2003-11-07 Thread - Edwin -
On 2003.11.7, at 18:37 Asia/Tokyo, Marek Kilimajer wrote: ...[snip]... Are Kanji and Kana chracter sets? Kan - Chinese + ji - character kana: (quoted from the American Heritage Dictionary) 1. Japanese syllabic writing. The characters are simplified kanji and are usually used with

Re: [PHP] How to support Multi Lingual characters

2003-11-07 Thread - Edwin -
Hi, On 2003.11.7, at 20:09 Asia/Tokyo, K. Praveen Kumar wrote: Dear Umesh, Thanks for your quick reply. Let me explain the scenario: We have an application in English. The data will be stored in MySQL database. If some body enter the data using Japanese keyboard (Japanese language) that

Re: [PHP] SQL Injections

2003-11-07 Thread - Edwin -
Just to add... On 2003.11.8, at 00:04 Asia/Tokyo, Chris Shiflett wrote: --- Shaun [EMAIL PROTECTED] wrote: does anyone know of a function i can include in my scrpits to ensure all $_POST values sent from a page don't include any SQL? It's only important that the data sent from the client will

[PHP] On OS X (10.2) where is php installed?

2003-11-07 Thread Adam
All, Forgive me for the simplistic question, I'm not much of a Unix, Apache, or PHP wiz. I'm running Mac OS X 10.2 on a 12 PB. I've installed PHP 4.3.0 from Marc Lynric's site (http://www.entropy.ch). However, I cannot actually find the installation files on my laptop. My web server works. It

[PHP] Re: Send data Header Response

2003-11-07 Thread pete M
psuedo code index.php php code to process form if(no_errors) redirect to another page ? form action=index.php method=post input type='text' name='user_name' value='?php echo $_POST['user_name']? submit /form YOur submitting the form to itself so the $_POST variable is available in the form

[PHP] Re: single quotes in database

2003-11-07 Thread pete M
also check magic_quotes_runtime in php.ini. This add's slashes to incoming Post/get variables You can change this at tun time with the ini_set() function pete Steve Buehler wrote: I am using PHP/MySQL and am having a problem. We have some names and addresses in the database that have single

[PHP] Re: trouble with forcing output to be cached

2003-11-07 Thread Ilja Polivanov
The image is already written to a file. i wrote ..CREATION.. as an example, because there is no difference do you write and read, or create. If you pass something through PHP, it will append it's own header HUH :( .. so not so simple ;[ i guess that it is impossible to find a solution here, but

Re: [PHP] Japanese character validation

2003-11-07 Thread - Edwin -
Hi, On 2003.11.8, at 00:42 Asia/Tokyo, Lew Mark-Andrews wrote: Howdy, I have accept input from the user and check if the input is japanese character only, for example : If name is accepted , I need to check if its any of the Hiragana, Katakana or Kanji. Hmm... why would you like to do that?

RE: [PHP] Re: High bandwidth application tips

2003-11-07 Thread Craig Lonsbury
another small tweak is to limit or remove html comments. this doesn't directly speed up code, but makes for less strain on your outbound pipe (good for you) and smaller downloads for the users (think dial-up). i usually try to put my comments in the php code. this reduces the bytes sent,

Re: [PHP] On OS X (10.2) where is php installed?

2003-11-07 Thread - Edwin -
Hi, On 2003.11.8, at 01:51 Asia/Tokyo, Adam wrote: All, Forgive me for the simplistic question, I'm not much of a Unix, Apache, or PHP wiz. I'm running Mac OS X 10.2 on a 12 PB. I've installed PHP 4.3.0 from Marc Lynric's site (http://www.entropy.ch). However, I cannot actually find the

[PHP] Re: PHP developers

2003-11-07 Thread Steve Magruder
James wrote: Can anyone recommend a good place where I can find some talented PHP contractors? I'm looking to hire some people for some upcoming projects, and I don't want to just put an ad in the paper and get a bunch of responses from barely-qualified people. www.freelancedeveloper.org

Re: [PHP] Cell Colour Change!!! HELP

2003-11-07 Thread student
Hi I had somthing like the following in my code which almost works but code use debugging! tr bgcolor= ? IF(?page!=home) { print(#006633) ; } elseif (?page!=compose) { print(#009966) ; } elseif (?page!=Registration) {print(#CC0033) ;} tdtd/ tr/ But what

[PHP] PHP, SiteSpinner and MS SQL2000

2003-11-07 Thread Rique Gresham
Hi All, What I'm trying to do is query a mssql database using a SELECT statement to get the last report number from a table, increment that number by 1 and have it display in a INPUT box. The data will not INSERT into the database as a new record until one presses the SUBMIT button. PHP 4.3.2

RE: [PHP] PHP, SiteSpinner and MS SQL2000

2003-11-07 Thread Vail, Warren
Rique, With almost any SQL database you can select max(column) + 1 (or some such) to get the next available number, but if you plan to have more than one user on the database at the same time, what will you use to prevent them both from getting the same number and attempting to save over each

Re: [PHP] Some Information on A Help Database Application Using PHP and XML

2003-11-07 Thread Burhan Khalid
Peter Hartman (To 1886) wrote: Et al, I'm interested in either designing or participating in a current project which utilizes PHP and XML to create a documentation application. My company (caravelcms.org) has designed a content management system using PHP and we are currently investigating how

Re: [PHP] Re: PHP developers

2003-11-07 Thread Jason Wong
On Saturday 08 November 2003 01:42, Steve Magruder wrote: At any rate, I recommend avoiding all those job bidding sites... can you really trust the guys in far off places who charge $5 an hour? Well, as long you pay after seeing the completed work then there really shouldn't be any

Re: [PHP] single quotes in database

2003-11-07 Thread Burhan Khalid
Steve Buehler wrote: I am using PHP/MySQL and am having a problem. We have some names and addresses in the database that have single quotes in them. [snipped] mysql_escape_string() stripslashes() addslashes() -- Burhan Khalid phplist[at]meidomus[dot]com http://www.meidomus.com

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Burhan Khalid
Marek Kilimajer wrote: Jay Blanchard wrote: [snip] snobs jump in [/snip] What is funny about that is that it is those snobs who folks ask their questions to. It is those snobs who solve problems for others. It is those snobs who have learned and experienced so that others may benefit.

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Jason Wong
On Friday 07 November 2003 21:12, DvDmanDT wrote: Oh.. I'm personally trying to avoid not top-posting, cause I think it's nicer when ppl place the message at the top where I can read it instantly without scrolling down.. :s So why bottompost? I've said it before, and I'll say it again - the

[PHP] question about :: usage

2003-11-07 Thread Chris W. Parker
Hi yizzle. Anyway... Here is my problem. I have a class called Validate that has a method called ValidateInput. There is another method in this class called phonenumber. ValidateInput calls phonenumber at some point like this $this-phonenumber($input);. In my page I'm trying to use this class

Re: [PHP] Cell Colour Change!!! HELP

2003-11-07 Thread Burhan Khalid
student wrote: Hi I had somthing like the following in my code which almost works but code use debugging! tr bgcolor= ? IF(?page!=home) { print(#006633) ; } elseif (?page!=compose) { print(#009966) ; } elseif (?page!=Registration) {print(#CC0033) ;} tdtd/

Re: [PHP] PHP, SiteSpinner and MS SQL2000

2003-11-07 Thread Burhan Khalid
Rique Gresham wrote: Hi All, What I'm trying to do is query a mssql database using a SELECT statement to get the last report number from a table, increment that number by 1 and have it display in a INPUT box. The data will not INSERT into the database as a new record until one presses the SUBMIT

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Robert Cummings
I disagree. I usually trim replies regardless of whether I top or bottom post. And while I didn't have to scroll to read this email, I often have to scroll for longer emails when it is bottom posted. Which seems kinda silly to me since I've already read the thread. While I'm at it someone did

Re: [PHP] Japanese character validation

2003-11-07 Thread Eugene Lee
On Sat, Nov 08, 2003 at 02:20:00AM +0900, - Edwin - wrote: : : Besides, there are some issues (for example with Shift_JIS) that : bothers (with no easy solution) even members of the Japanese PHP : Group ML. (Like the recent thread [PHP-users 18803] on : http://www.php.gr.jp/ or :

[PHP] MX lookup email verification on Windows

2003-11-07 Thread Matt Palermo
Does anyone know of a way to perform an MX lookup on a Windows server to perform an email verification? Any help on this would be great, since I can only find code for this that will work on *nix servers. Please let me know if you can help. Thanks, Matt -- PHP General Mailing List

Re: [PHP] Japanese character validation

2003-11-07 Thread Eugene Lee
On Sat, Nov 08, 2003 at 01:35:40AM +0900, - Edwin - wrote: : : On 2003.11.7, at 18:37 Asia/Tokyo, Marek Kilimajer wrote: : : ...[snip]... : : Are Kanji and Kana chracter sets? : : Kan - Chinese + ji - character : : kana: (quoted from the American Heritage Dictionary) : 1. Japanese

RE: [PHP] How to remove new line character?

2003-11-07 Thread Boaz Yahav
How to remove new line / CrLf from a string? http://www.weberdev.com/get_example.php3?count=3577 Sincerely berber Visit http://www.weberdev.com/ http://www.weberblog.com/ Today!!! To see where PHP might take you tomorrow. Share your code : http://addexample.weberdev.com Search for PHP Code

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Jason Wong
On Saturday 08 November 2003 03:35, Robert Cummings wrote: I disagree. Yes, I think you disagreed with me last time as well :-) And if you keep doing that I might to forced to start using InterJinn! I usually trim replies regardless of whether I top or bottom post. And kudos to you for

RE: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Chris W. Parker
Robert Cummings mailto:[EMAIL PROTECTED] on Friday, November 07, 2003 11:35 AM said: And while I didn't have to scroll to read this email, I often have to scroll for longer emails when it is bottom posted. Which seems kinda silly to me since I've already read the thread. The only reason

RE: [PHP] what is a global

2003-11-07 Thread Jay Blanchard
[snip] I thought i knew the useage of the global keyword in a function but after reading a pals program i am really confused, i tried http://php.net/global but that does not give me any results...searched the list and found some reference to global and the scope of the function but still confused.

Re: [PHP] what is a global

2003-11-07 Thread Chris Shiflett
--- Ryan A [EMAIL PROTECTED] wrote: I thought i knew the useage of the global keyword in a function but after reading a pals program i am really confused, i tried http://php.net/global but that does not give me any results...searched the list and found some reference to global and the scope of

RE: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Robert Cummings
Actually researhc seems to be showing that our brains process visual information in parallel versus serial. Thus your assertion seems somewhat flawed. And I'm sure you understood my intentional typo of researhc since your brain more than likely read it in all at once rather than as a series of

Re: [PHP] question about :: usage

2003-11-07 Thread Eugene Lee
On Fri, Nov 07, 2003 at 11:28:18AM -0800, Chris W. Parker wrote: : : Anyway... Here is my problem. I have a class called Validate that has a : method called ValidateInput. There is another method in this class : called phonenumber. ValidateInput calls phonenumber at some point like : this

RE: [PHP] what is a global

2003-11-07 Thread Ryan A
Got it, thanks. For a snob you aint half bad :-D Cheers, -Ryan http://us4.php.net/language.variables.scope -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] BTML 2.0 released!!!

2003-11-07 Thread Robert Cummings
On Fri, 2003-11-07 at 14:54, Jason Wong wrote: On Saturday 08 November 2003 03:35, Robert Cummings wrote: I disagree. Yes, I think you disagreed with me last time as well :-) Great to be consistent. And if you keep doing that I might to forced to start using InterJinn! I think the

RE: [PHP] question about :: usage

2003-11-07 Thread Chris W. Parker
Eugene Lee mailto:[EMAIL PROTECTED] on Friday, November 07, 2003 12:00 PM said: Won't work. $this refers to the instance of an object. Yeah I've decided to just instantiate an object. It's not really a big deal I guess, I just thought it might be a little cleaner to not instantiate. A

  1   2   >