[PHP] Help about these algorithm methods

2003-05-31 Thread [EMAIL PROTECTED]
Hello all, I need help about to implement these methods in PHP: 1) Tree (Arbol) 2) Queue - FIFO (Cola) 3) Grafo 4) Linked lis - (Listas enlazadas o ligadas)) 5) Stack - LIFO - (Pila) If someone know about a web site that explain these in PHP, I will appreciate it, thanks for all your help :),

[PHP] mysl_connect question

2003-04-05 Thread [EMAIL PROTECTED]
When I use myssql to connect to a db with anything besides root I get an error that I cannot connect. I created a user that has access to one databse called 'menu'. The user has SELECT, UPDATE, and DELETE permissions for that database. I can connect on the command line: mysql-u newuser -p. But

Re: [PHP] mysql_num_rows

2003-04-04 Thread [EMAIL PROTECTED]
Someone helped me out with this to see exactly what the query is returning... echo pre the Query: ; print_r ($select_result); echo /pre; This should show you exactly what the result is getting... /T on 4/4/03 4:49 PM, Mike Tuller at [EMAIL PROTECTED] wrote: I can't believe I forgot

Re: [PHP] REPLY NEEDED

2003-04-03 Thread [EMAIL PROTECTED]
What has this to do with PHP? On 4/4/2003, PATRICK KOFI [EMAIL PROTECTED] wrote: STRICTLY CONFIDENTIAL WE ARE MEMBERS OF A SPECIAL COMMITTEE FOR BUDGET AND PLANNING OF THE NIGERIAN NATIONAL PETROLEUM CORPORATION (NNPC). THIS COMMITTEE IS PRINCIPALLY CONCERNED WITH CONTRACT

[PHP] QUESTION - user management

2003-04-02 Thread [EMAIL PROTECTED]
How do applications know how many users are logged into the system? For example postnuke will tell you '3 users online, 2 members'. Im gussing it uses sessions, but how? Edd Barrett (http://www.filibusta.net) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Can php run as a script?

2003-04-02 Thread [EMAIL PROTECTED]
PHP can run as a script indeed. #!/usr/bin/php Do that like you would perl and then make it executable. Should work. Note that any errors will be chucked back to the terminal in HTML. On 4/2/2003, Poon, Kelvin (Infomart) [EMAIL PROTECTED] wrote: Hi, This might be a newbie question but I

[PHP] authorization

2003-03-12 Thread [EMAIL PROTECTED]
Hello, I'm wonding if someone can please assist me with the following addition I would like to make to a music artists site using PHP. The site has a mailing list, guestbook, videos - when the user goes to access the guestbook and videos, I want to be able to check if they're signed-up to the

Re: [PHP] imagejpeg and downloading images

2003-03-11 Thread adrian [EMAIL PROTECTED]
try changing headers sent e.g header(Content-type: application/octet-stream); header(Content-Disposition: attachment; filename=001_SM77GR.jpg); $im = imagecreatefromjpeg(001_SM77GR.jpg); imagejpeg($im,'',85); imagedestroy($im); - Original Message - From: Doug Coning [EMAIL PROTECTED

Re: [PHP] Forcing page refresh with http headers?

2003-03-10 Thread adrian [EMAIL PROTECTED]
a trick i use is with the time() function e.g. $var = time(); then header('location: .page.php?var=' .$var); This forces the browser to retrive the page again from the server. might be of some use. adrian. - Original Message - From: Daniel Joyce [EMAIL PROTECTED] To: [EMAIL PROTECTED

Re: [PHP] How to check for refresh in PHP

2003-01-31 Thread adrian [EMAIL PROTECTED]
edit the url in the address bar in which case you could probly use http_referer to check. for my purposes most of the visitors won't edit the url so it's not too important. - Original Message - From: Pag [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, February 15, 2003 6:08 AM

Re: [PHP] question about GD and colors

2003-01-27 Thread adrian [EMAIL PROTECTED]
try imagecreatetruecolor() instead of imagecreate() - Original Message - From: Philipp [EMAIL PROTECTED] To: Jean-François Marseaut [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, January 27, 2003 4:21 PM Subject: Re: [PHP] question about GD and colors Hi experienced the same

Re: [PHP] IFRAMES PHP

2003-01-27 Thread adrian [EMAIL PROTECTED]
() /form /body /html iframetest.htm html body form input type=checkbox id=one name=one value=hello /form /body /html - Original Message - From: John W. Holmes [EMAIL PROTECTED] To: 'Greg' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, January 27, 2003 5:31 PM Subject: RE: [PHP

[PHP] simple date question

2003-01-20 Thread adrian [EMAIL PROTECTED]
this is pretty simple but my brain's not working I get the numerical value of a week in the year thus e.g $today = date(W); gives 4 .so this is the 4th week of the year. I want to get the month based on this number. e.g 4 should be january. 7 will be feb etc.. i'm not bothered about being too

[PHP] Multiple sizes for products

2003-01-18 Thread [EMAIL PROTECTED]
. Aracena [EMAIL PROTECTED] [EMAIL PROTECTED] (0299) 156-356688 Neuquén (8300) Capital Argentina mail2web - Check your email from the web at http://mail2web.com/ . -- PHP General Mailing List (http://www.php.net

[PHP] COM object

2003-01-11 Thread [EMAIL PROTECTED]
How I can create a Word document through PHP? Must I modify php.ini? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] COM question

2003-01-10 Thread [EMAIL PROTECTED]
How I can manage Word through PHP? I have tried with the code indicated on PHP-guide (chm format) but it does not work. ?php //test04.php $word = new COM(word.application) or die(Non sono riuscito ad eseguire Word); $word-Visible = 1; $word-Documents-Add();

[PHP] regular expression help

2003-01-07 Thread adrian [EMAIL PROTECTED]
I'm a bit useless at regular expressions so i thought i ask. i need to turn all [link url=http://www.site.com] link to site [/link] in a string into html a href= ...etc and back again. thanks adrian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] FREE access to LIVE ADULT WEBCAMS! 100% FREE! No Credit Card Needed!

2002-12-17 Thread [EMAIL PROTECTED]
Below is the result of your feedback form. It was submitted by [EMAIL PROTECTED] ([EMAIL PROTECTED]) on Tuesday, December 17, 2002 at 15:04:18 --- bp: Are you sick and tired of sitting in a chatroom begging to see

[PHP] imagecopyresized

2002-11-25 Thread adrian [EMAIL PROTECTED]
hi i'm having problems resizing jpegs. here's an e.g. using manual example. code used : ? $new_w=395; $new_h=297; header(Content-type: image/jpeg); $dst_img=ImageCreate($new_w,$new_h); $src_img=ImageCreateFromJpeg($name);

Re: [PHP] imagecopyresized

2002-11-25 Thread adrian [EMAIL PROTECTED]
( 2.x) you can't manipulate jpegs? gd is my only option. adrian - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 25, 2002 6:26 PM Subject: Re: [PHP] imagecopyresized On Tuesday 26 November 2002 02:10, [EMAIL PROTECTED] wrote: hi i'm

[PHP] GD imagettftext problem

2002-11-18 Thread adrian [EMAIL PROTECTED]
(). http://217.114.163.70/info.php tia adrian murphy - Original Message - From: Oliver Fänger [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, November 18, 2002 3:42 PM Subject: [PHP] Re: SQLCODE=-930 could somebody tell me why libphp4.so (php-4.2.3

[PHP] enable-gd-native-ttf or tt?

2002-11-18 Thread adrian [EMAIL PROTECTED]
i know nothing about building php really but my isp recently upgraded(version 4.1.2) and now imagettftext() function doesn't work.the error i get is: Warning: libgd was not built with FreeType font support .. see phpinfo() http://217.114.163.70/info.php what i noticed was this bit of the

Re: [PHP] PHP search engines

2002-11-17 Thread [EMAIL PROTECTED]
= Heilig (Cece) Szabolcs - [EMAIL PROTECTED] - http://www.phphost.hu = -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] storing cc details in mysql

2002-11-04 Thread adrian [EMAIL PROTECTED]
Hi, I know this is an old chestnut and i am going thru archives and googling as well. anyhoo, my small company recently decided that live cc processing was too expensive for our needs (this has to do with us being based in ireland where there is a problem with the banks -they only deal with one

Re: [PHP] storing cc details in mysql

2002-11-04 Thread adrian [EMAIL PROTECTED]
Sorry forgot to say we do have a secure server. - Original Message - From: adrian [EMAIL PROTECTED] [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 04, 2002 4:37 PM Subject: [PHP] storing cc details in mysql Hi, I know this is an old chestnut and i am going thru archives

[PHP] newbie question, open file error

2002-10-30 Thread [EMAIL PROTECTED]
hi, i hope im sending this to the correct place. im getting this error (below) when i run a script on my server. Im assuming I need to communicate with my admin about permissions, but im not 100% sure what the permission is. I'm basically trying to create an html file. if anyone can give

[PHP] PHP and Flash

2002-09-17 Thread [EMAIL PROTECTED]
Hi all, I've never combined PHP with Flash, but I do know there's some possibilities. I'm wondering if I can make a dynamic-PHP-site which controls Flash. I need the administrator to be able to upload a new product to a DB, and then be seen by the visitors in Flash... is this possible? I want

[PHP] Better Images

2002-09-12 Thread [EMAIL PROTECTED]
Hi all, One of my customers needs to show magazine newspapers reviews of his work, which are scanned in such a low res due to a file size matter, that the images are not quite readable. Can I convert large size images to pdf with PHP in order to show them faster on-the-fly? Will this be better?

[PHP] wordwrap function (that skips html tags)

2002-09-03 Thread [EMAIL PROTECTED]
hello! i found a nice function that i would like to use but unfortunately there is a problem i can not solve. for my notepool device it would be great to use php's wordwrap function but because the string that needs to be wordwrapped contains also html tags i can not use this function like

[PHP] select multiple

2002-07-31 Thread [EMAIL PROTECTED]
Hello, i have done as told to select multiple value from a html form, but i cannot insert all of them into MySql database. it inserts Array into the field, instead of the list of values. What can i do? Is there a special script to insert them? i tried, $str = ; foreach ($tableau as $k=$v) $str=

Re: RE: [PHP] Q:What is the easiest way to test my PHP+Html pages?

2002-07-27 Thread [EMAIL PROTECTED]
.- --- Mensaje Original -- De: John Holmes [[EMAIL PROTECTED]] Para: Marcus Unlimited [[EMAIL PROTECTED]], [EMAIL PROTECTED] [[EMAIL PROTECTED]] Cc: Asunto: RE: [PHP] Q:What is the easiest way to test my PHP+Html pages? Fecha: 27/07

Re: [PHP] High Resolution Images

2002-07-27 Thread [EMAIL PROTECTED]
), it does not display. mmm Any suggestions? - Original Message - From: Justin French [EMAIL PROTECTED] To: Tech Support [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, July 26, 2002 9:22 PM Subject: Re: [PHP] High Resolution Images Does the maximum uploaded file size

[PHP] High Resolution Images

2002-07-26 Thread [EMAIL PROTECTED]
Hello, I am creating a script that takes an uploaded image, creates a thumbnail from it, and saves both files. The script works great, but the problem is, the files It will have to handle, are high-resolution files (300dpi, 24 bit-depth).. it works fine on regular files (72 dpi), but when I

[PHP] define new window

2002-03-07 Thread [EMAIL PROTECTED]
Hi This line opens in a new window. How can i define the size of the window, scroll options etc. echo a href= . $PHP_SELF . ?mode=results target=_blankResults/a; Thanks in advance Mohamed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] php and form mails

2002-03-04 Thread [EMAIL PROTECTED]
stumped at how to set it up so that if someone has selected a radio button, how do I show this? input type=radio name=form[gender] value=malemale input type=radio name=form[gender] value=femalefemale How would I show the selection if one of the radio buttons was selected? -- Laurie Landry [EMAIL

Re: [PHP] PHP and Apache Win32

2002-03-01 Thread [EMAIL PROTECTED]
Yes, you have got a few thing mixed up, to be exact DSO and CGI The DSO module containing the PHP engine is loaded into Apache, and therefore it doesn't the CGI version (phpexe) anymore So 'ScriptAlias' is only needed for CGI installations, and you don't need the 'Directory' part either All

Re: [PHP] Unknown column when column does exist.

2002-02-24 Thread [EMAIL PROTECTED]
Jason, Can't execute INSERT INTO events (TITLE, SUMMARY, ORG, CITY, PROVINCE, DATE, REG_DATE, FEE) VALUES ('Another Event', 'Summary of this event goes here', 'Another Organization', 'Coquitlam', 'BC', 'Another Date', 'Another Date', '$250') Unknown column 'ORG' in 'where clause'

[PHP] Unknown column when column does exist.

2002-02-23 Thread [EMAIL PROTECTED]
is confused and is telling me something else. Ideas? Thanks! -- Laurie Landry [EMAIL PROTECTED] - email (604) 693-1120 - voicemail/fax -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] pulling text to insert in table

2002-02-22 Thread [EMAIL PROTECTED]
Hi Thanks. In some cases I would have Microsoft Excel files wich I will save as csv files. Can content be pulled from a csv in the same method. Thanks Mohamed - Original Message - From: Nick Wilson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, February 22, 2002 9:43 AM

[PHP] pulling text to insert in table

2002-02-21 Thread [EMAIL PROTECTED]
Hi Is it possible to pull text from a text file and insert it into a table in an html page using php. In some cases it would have to pull text from a certain part in the text file and insert it into a specific cell in the table. Thanks in advance Mohamed -- PHP General Mailing List

[PHP] Breadcrumbs in PHP

2002-02-16 Thread [EMAIL PROTECTED]
a better script that I can use for breadcrumbs? -- Laurie Landry [EMAIL PROTECTED] - email (604) 693-1120 - voicemail/fax -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] links manager

2002-02-14 Thread [EMAIL PROTECTED]
Hi Anybody know of any good scripts for creating a directory for links which includes a search function similar to Yahoo and other search engines. Thanks in advance Mohamed

[PHP] Modifying a record works but not in actual database?

2002-02-09 Thread [EMAIL PROTECTED]
I'm trying to set up a modify record page, and after testing and triple-checking the syntax and form, and even running the query in the phpMyAdmin interface to make sure the query is correct. This is just a snippet of what I've done: ?php // open connection include (connectdatabase.inc); //

Re: [PHP] Modifying a record works but not in actual database?

2002-02-09 Thread [EMAIL PROTECTED]
Thanks Jason, switching the single and double quotes did the trick! Now, I'm curious - what's the rule of thumb for when using single quotes and double quotes? Thanks! -- Laurie Landry [EMAIL PROTECTED] - email (604) 693-1120 - voicemail/fax Jason Wong [EMAIL PROTECTED] wrote

RE: [PHP] Re: DreamWeaver/PHP ability?

2002-02-07 Thread [EMAIL PROTECTED]
PROTECTED] - email (604) 693-1120 - voicemail/fax Edward R. Bailey [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Actually Ultradev does support PHP if you buy a php application server extension. A company in Romania (The name escapes me) makes

[PHP] IP based redirection

2002-02-01 Thread [EMAIL PROTECTED]
Could you please help us, to redirect some of our pages to based on IP address. We have used SmartRedirect program but it is not working on with some of our ISP's IP address. We are located at India, and like to have some language specific pages to be displayed to our Indian user while english

Re: [PHP] variable variables

2002-01-17 Thread [EMAIL PROTECTED]
PROTECTED] -- 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 General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] PHP Security - view source code

2002-01-17 Thread [EMAIL PROTECTED]
to be executed in is a very bad idea. -Rasmus -- 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]

Re: [PHP] how to check REMOTE_ADDR to see if it contains PART of an ip

2002-01-16 Thread [EMAIL PROTECTED]
if the string mozilla was contained within the variable... besides, i changed the string to check for by one digit and it still returned true because PART of the string was true i guess... i dunno. anyone else got another function in mind? --- [EMAIL PROTECTED] [EMAIL PROTECTED] wrote

Re: [PHP] PHP Security - view source code

2002-01-16 Thread [EMAIL PROTECTED]
code unless of course you screwed up and echoed the data :) Rick How wonderful it is that nobody need wait a single moment to improve the world. - Anne Frank From: Phil Schwarzmann [EMAIL PROTECTED] Date: Wed, 16 Jan 2002 16:03:45 -0500 To: [EMAIL PROTECTED] Subject: [PHP] PHP Security

Fwd: Re: [PHP] Remove value from array

2002-01-16 Thread [EMAIL PROTECTED]
of array_splice() in the PHP manual here for the details: http://www.php.net/manual/en/function.array-splice.php ===END FORWARDED MESSAGE=== -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: [PHP] An important, urgent question about classes?

2002-01-15 Thread [EMAIL PROTECTED]
If you can't figure how to make your class work, send us your code so far, we'll tell what's wrong. For an example class just look at the manual. For more info on OO programming in PHP go to one of the many tutorial sites, for example http://phpbuilder.com . You can register any type of

Re: [PHP] Mysql

2002-01-15 Thread [EMAIL PROTECTED]
. If i want to create a table in some database what should I do. The database is on server. -- Best regards, -=LukA=- mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: [PHP] Including a file using php //

2002-01-15 Thread [EMAIL PROTECTED]
someone help me please? thanks, louie... -- 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 General Mailing List (http://www.php.net

Re: [PHP] multiple replaces...

2002-01-12 Thread [EMAIL PROTECTED]
speed issues regarding this solution? =check out string functions. On simple stuff they will beat RegEx for speed hands down - but watch out if case-sensitivity is relevant. =dn -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: [PHP] multiple replaces... (2)

2002-01-12 Thread [EMAIL PROTECTED]
://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]

Re: [PHP] PHP question regarding Cold Fusion

2002-01-12 Thread [EMAIL PROTECTED]
would be appreciated. Check out Snoopy - http://snoopy.sourceforge.net/ -- 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: [PHP] Using PHP to post the contents of an email to MySql database

2002-01-11 Thread [EMAIL PROTECTED]
for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the postmaster at [EMAIL PROTECTED] www.sothebys.com ** -- PHP General Mailing List (http://www.php.net

[PHP] IMPORTANT about asking QUESTIONS

2002-01-11 Thread [EMAIL PROTECTED]
, manual or previous posts) and will ultimately save yourself some time waiting for replies. bvr. -- 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]

Re: [PHP] array_shift and php 4.0.4

2002-01-10 Thread [EMAIL PROTECTED]
, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED] -- 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] array_shift and php 4.0.4

2002-01-10 Thread [EMAIL PROTECTED]
() takes an element off the START of the array. -- 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]

Re: [PHP] array_shift and php 4.0.4

2002-01-10 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote: You are right, I should've known (used it before) .. Ofcourse you could do an array_reverse() before and after, don't know about the performance impact of that however. bvr. array_pop() and array_shift are *different* :) array_pop() takes an element off

Fwd: RE: [PHP] does this work?

2002-01-10 Thread [EMAIL PROTECTED]
and it would be like using the statement $a = $a; very very useless! bvr. On Thu, 10 Jan 2002 15:39:27 -0600, Rick Emery wrote: quotes are not needed mysql_query($tempsql, $db); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Fwd: Re: [PHP] A variable with a variable

2002-01-10 Thread [EMAIL PROTECTED]
... since I want to know a way that can be used if I have more then just 3 or a limited ammount of varaibles. -- 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] PHP Doesn't Crash but show blank page

2002-01-03 Thread [EMAIL PROTECTED]
://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] PHP Doesn't Crash but show blank page

2002-01-03 Thread [EMAIL PROTECTED]
://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] New Indian PHP User Group Mailing List

2002-01-02 Thread Tarique Sani [EMAIL PROTECTED]
Hello Kind folks First apologies for a slightly off topic posting Second - There is now an active Indian PHP User Group. The mailing list is hosted at YahooGroups: http://groups.yahoo.com/group/in-phpug To subscribe, please send a blank message to [EMAIL PROTECTED] The list aims to cater

[PHP] Comment About- [PHP] TEST---Please Ignore

2001-12-31 Thread [EMAIL PROTECTED]
ezlm command queries) before sending that test message. FYI (for those who care) I recently started having problems with the list. I was receiving messages, but could not send them. When I checked the ezlm admin commands ([EMAIL PROTECTED]), it said my address was NOT subscribed. Long story short

RE: [PHP] How to parse an XML document

2001-12-24 Thread [EMAIL PROTECTED]
-Original Message- From: PHP Rules [mailto:[EMAIL PROTECTED]] Sent: 23 December 2001 10:15 AM To: [EMAIL PROTECTED] Subject: [PHP] How to parse an XML document Hi fellas. I would like to know the way to parse an XML document. I come from Java world, and you can handle an XML document

[PHP] subscribe me

2001-12-13 Thread [EMAIL PROTECTED]
please subscribe me --- L'e-mail gratuit pas comme les autres. Pour créer votre adresse : http://www.nomade.fr/courrier/ouvrir.asp NOMADE.FR, pourquoi chercher ailleurs ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] 4.2.0-dev+Apache/2.0.27-dev

2001-10-21 Thread [EMAIL PROTECTED]
HP 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] È«ÃæÖ§³ÖASP¡¢PHP ¡¢JSP¡¢PERL¡¢CGI¡¢Êý¾Ý¿â, ÀúÊ·×îµÍ¼Û

2001-09-13 Thread [EMAIL PROTECTED]
£¬±ÈÆðÆäËûÐû´«·½Ê½¸ü¼ÓÁ®¼Û£¬×ÊÁϿɾ­³£¸üУ¬Ð§¹û¸ü¼Ñ£¡ »¶Ó­ÄúÖÂÐÅToday's Network [EMAIL PROTECTED] »¶Ó­Äú·ÃÎÊToday's Network http://www.now.net.cn Ö麣Ì컥¿Æ¼¼ÓÐÏÞ¹«Ë¾ 0756--2125583 2125593 2125523 2252872 0756--2236575 2125594 2216376 ´«Õ棺 0756--2229669 ÈçÄú²»ÏëÔÙÊÕµ½´ËÐÅÇëת·¢µ

[PHP] Dc/Ac Motor sale

2001-09-12 Thread [EMAIL PROTECTED]
Hing Lung Motor Mfy, New Offer Aug-2001 http://www.hinglungmotor.com.hk [EMAIL PROTECTED] [EMAIL PROTECTED] Fax: 852-24817148 NO: HL101-D-D8xH6 VIBRATER MOTOR SIZE: 20 x 15.5 x H25 MM PRICE: US$ 0.13/PCNO: HL307 MOTOR SIZE: D12 x 19.5 MM PRICE: US$ 0.38/PC NO: HL1011-DC

Re: [PHP] 304 Not Modified

2001-09-06 Thread [EMAIL PROTECTED]
. -- Initial message --- From: Christian Reiniger [EMAIL PROTECTED] To : Ouster [EMAIL PROTECTED], [EMAIL PROTECTED] Cc : Date: Thu, 6 Sep 2001 11:53:50 +0200 Subject : Re: [PHP] 304 Not Modified On Wednesday 05 September 2001 21:22, Ouster wrote: I'm making

[PHP] Dc /Ac motor sale

2001-08-28 Thread [EMAIL PROTECTED]
Hing Lung Motor Mfy, New Offer Aug-2001 http://www.hinglungmotor.com.hk [EMAIL PROTECTED] [EMAIL PROTECTED] Fax: 852-24817148 NO: HL101-D-D8xH6 VIBRATER MOTOR SIZE: 20 x 15.5 x H25 MM PRICE: US$ 0.13/PCNO: HL307 MOTOR SIZE: D12 x 19.5 MM PRICE: US$ 0.38/PC NO: HL1011-DC

RE: [PHP] something like SSI ?

2001-08-15 Thread [EMAIL PROTECTED]
include(/path/to/the/include/file.inc); Original Message: - From: Martin [EMAIL PROTECTED] Date: Wed, 15 Aug 2001 03:21:42 +0200 To: [EMAIL PROTECTED] Subject: [PHP] something like SSI ? Ok, this may seem like a dumb newbie question... Is there an function like ASP's Server

[PHP] logging bandwidth

2001-08-12 Thread [EMAIL PROTECTED]
a solution to this? Thankz. -- 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] Apache

2001-08-02 Thread [EMAIL PROTECTED]
that I am the owner, would that cause problems somehow? Or is it possible to chmod it so that apache is still the owner but i am allowed to write to it? TIA Tom Malone -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP] Apache + Oracle + PHP on HPUX

2001-07-26 Thread [EMAIL PROTECTED]
://www.eoffice.dk -- 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] Using Variable Variables...

2001-07-26 Thread [EMAIL PROTECTED]
://matrix.swifte.net/ -- -- 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] Global Variable Variables...

2001-07-26 Thread [EMAIL PROTECTED]
variables on a global variable? -- 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] Global Variables - Local Scope

2001-07-26 Thread [EMAIL PROTECTED]
How can I read in all of the global variables and give them local scope? PLEASE HELP ME. -- 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] progress dbi?

2001-07-25 Thread [EMAIL PROTECTED]
I'm thinking of writing some web aps to interface with a progress database created with Association Plus. I'm wondering if anyone has done this and if it was hard. I'm not certain how to go about understanding this whole ODBC thing ... Susan -- [EMAIL PROTECTED] http://futurebird.diaryland.com

Re: [PHP] Unlink Woes

2001-07-20 Thread [EMAIL PROTECTED]
on 7/20/01 11:48 AM, Sheridan Saint-Michel at [EMAIL PROTECTED] wrote: Warning: Unlink failed (Permission denied) in /home/www/foxjet/employees/admin.php on line 108 Here's the code if($submit == Delete) { for ($j = 0; $j $numfiles; $j++) { $checkname = $files[$j]; if (${$checkname

Re: [PHP] PHP MySQL

2001-07-20 Thread [EMAIL PROTECTED]
on 7/20/01 12:32 PM, Erich Kolb at [EMAIL PROTECTED] wrote: When you query a MySQL Database, how do you set the order alphabetically? If it's a text field just say DESC Susan -- [EMAIL PROTECTED] http://futurebird.diaryland.com -- PHP General Mailing List (http://www.php.net

Re: [PHP] 50 SEX Sites in ONE Affiliate Portal.................

2001-07-17 Thread [EMAIL PROTECTED]
on 7/17/01 4:32 PM, Christopher Ostmo at [EMAIL PROTECTED] wrote: But I do! I do! I LOVE Adult Entertainment. The Godfather and Shawshank Redemption are two of my favorite movies! Oh my god! So do I. Let's go for it Chris! Susan -- [EMAIL PROTECTED] http://futurebird.diaryland.com

[PHP] auto link?

2001-07-16 Thread [EMAIL PROTECTED]
something of my own? Susan -- [EMAIL PROTECTED] http://futurebird.diaryland.com -- 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] problem

2001-07-15 Thread [EMAIL PROTECTED]
=submit FORM Now, I want to change all of the items in the DB where a rowid was submited. Is there an easy way to do this? Susan -- [EMAIL PROTECTED] http://futurebird.diaryland.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] $($row[0])

2001-07-15 Thread [EMAIL PROTECTED]
If I have a form with fields named by rowid, is there a way to call the string, by the name of each rowid on the next page? $($row[0]) won't work ... -- [EMAIL PROTECTED] http://futurebird.diaryland.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP] html in my form? bad things! help help help!

2001-07-15 Thread [EMAIL PROTECTED]
? Also, is there a function that will check if links in a swatch of text are any good? Thanks! Susan -- [EMAIL PROTECTED] http://futurebird.diaryland.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] I want to learn this!

2001-07-15 Thread [EMAIL PROTECTED]
on 7/15/01 4:39 PM, Minardi boy at [EMAIL PROTECTED] wrote: Are there any books you guys/gals could recommend? Are there (non university/school) classes (satisfactory)? Try: the Oreilly PHP pocket reference. It shows you how to make forms. Also MySQL from the New Riders has a good chapter

[PHP] Re: html in my form? bad things! help help help!

2001-07-15 Thread [EMAIL PROTECTED]
on 7/16/01 1:47 AM, Ray Dow at [EMAIL PROTECTED] wrote: Try a different format that is also easier for the users to type. For example; a http://somesite.comClick me!/a and then convert that string OR [link:http://somesite.com]Click me![link] NEVER let users type HTML straight into a form

Re: [PHP] RE: html in my form? bad things! help help help!

2001-07-15 Thread [EMAIL PROTECTED]
on 7/16/01 2:03 AM, Ray Dow at [EMAIL PROTECTED] wrote: Everything removed by strip_tags(), including a href=somelinkclick me/a (you original example) See the problem? Everything isn't removed if you set it up like this: strip_tags($string,a,i,b) that part is working fine, it's tags

Re: [PHP] Journal.php

2001-07-11 Thread [EMAIL PROTECTED]
on 7/12/01 12:17 AM, Joe Ace at [EMAIL PROTECTED] wrote: I made that script, but it doesn't seem to be working. I was at www.devshed.com learning PHP, when I came to the tutorial PHP101_5/page4.html. I wanted to make my own files with a form instead of pre-determining the filename and what

Re: [PHP] Journal.php

2001-07-11 Thread [EMAIL PROTECTED]
on 7/12/01 12:17 AM, Joe Ace at [EMAIL PROTECTED] wrote: I made that script, but it doesn't seem to be working. I was at www.devshed.com learning PHP, when I came to the tutorial PHP101_5/page4.html. I wanted to make my own files with a form instead of pre-determining the filename and what

Re: [PHP] Image thumbnail creation

2001-07-09 Thread [EMAIL PROTECTED]
on 7/9/01 2:27 PM, Steph at [EMAIL PROTECTED] wrote: Hi all! New to the list and new to PHP. Im trying to create Image thumbnail dynamically versus creasting them manually via my graphics program. There's a nice one here: http://www.brokenchair.org/projects/snippets/ Susan -- PHP

Re: [PHP] Code Examples for Job Interview

2001-07-09 Thread [EMAIL PROTECTED]
on 7/9/01 6:00 PM, JCampbell at [EMAIL PROTECTED] wrote: Hey Everyone. This isn't a request for code or help, just thoughts and ideas. I've recently been asked to bring along some code examples for a job interview I will be heading to this week. This was the exact request The sample

Re: [PHP] how to hide dbconnect file if its in publisheddirectory?

2001-07-09 Thread [EMAIL PROTECTED]
on 7/10/01 12:30 AM, John Weaver at [EMAIL PROTECTED] wrote: Sorry, I should have been more clear. If you write modular code, your included file will be nothing but a group of functions. Call a file with nothing but functions in it and you get; HTMLHEAD/HEAD/HTML. I can't see

Re: [PHP] how to hide dbconnect file if its in publisheddirectory?

2001-07-09 Thread [EMAIL PROTECTED]
on 7/10/01 1:01 AM, Navid A. Yar at [EMAIL PROTECTED] wrote: Hmmm, I was wondering about security of PHP also. Does anyone know the general issues of security within PHP documents? My thought is that PHP cannot be seen when you view a source anyway, so isn't it secure enough (besides

Re: [PHP] multiple outputs to mysql_query()

2001-07-08 Thread [EMAIL PROTECTED]
on 7/8/01 3:39 AM, Adam at [EMAIL PROTECTED] wrote: i want my mysql query result to output 2 mysql output rows for every tr set. I'm used to just doing a do/while statement for a single mysql output per row. I'd do this: ?php echo 'table'; $result = mysql_query(SELECT * from table WHERE

<    1   2   3   4   5   6   >