Re: [PHP] Variables and Strings

2005-12-29 Thread PHP Superman
s it would also return the Variable Names in an array On 12/29/05, Jochem Maas <[EMAIL PROTECTED]> wrote: > > PHP Superman wrote: > > Hey everyone, is there a way to return all the variables from a string > into > > an array, for example > > $Var1="Yo"; >

RE: [PHP] nifty little tools - resposity - evaluations..

2005-12-30 Thread tg-php
ion in general. And never a lack of people who give opinions on what their favorite is... be it framework, php editor, or favorite brand of shiraz. So a little while ago I registered userrated.com (nothing there now but an image cropping test script done in PHP...with an awesome pic of a pirate

RE: [PHP] nifty little tools - resposity - evaluations..

2005-12-30 Thread tg-php
s over and over > again.. and there are so many great websites out there with great > code snippets or information in general. And never a lack of people > who give opinions on what their favorite is... be it framework, php > editor, or favorite brand of shiraz. > > > So a

[PHP] Problems requesting page

2006-01-03 Thread PHP Superman
Hey everyone, i'm on a windows box with PHP 5 on Apache 2 and I have a strange problem. When i try to access a page it seems to be blank, before it always worked but now it sudenly stopped. I am not a big computer techy but i cleared IE's cache and it still doesen't work. Source

Re: [PHP] printing keys and values of array

2006-01-06 Thread tg-php
_________ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Converting IP Address to int value?

2006-01-06 Thread tg-php
be just an int value and have php convert the ip address to an int for database insertion. Then have an sql query that would just convert that int back into an ip address if I needed. My ultimate goal is to be able to write a query simular to this: SELECT * FROM Apache_Stats WHERE int_ip

Re: [PHP] input validation?

2006-01-12 Thread tg-php
___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] input validation?

2006-01-13 Thread PHP Superman
the limit they are. > > However, in your post you described the solution as either Javascript > > *or* PHP when the best solution is both. What I was pointing out is > > that while Javascript is a better solution from a usability point of > > view, not doing the validation with

Re: [PHP] Access Client IP address

2006-01-14 Thread PHP Superman
$_SERVER['REMOTE_ADDR'] will give you the proxy ip if they have one, and the browser sends the info, the user might change it to blahblahblah for all we know... On 1/4/06, Jay Blanchard <[EMAIL PROTECTED]> wrote: > > [snip] > Is there any way to client's IP addre

Re: [PHP] Best way to do this: www.domain.com?page=var

2006-01-16 Thread tg-php
order you want them accepted. For instance, if you use PHP a lot (which I think we all do :) but you have a lot of directories that just have static HTML in them, you might have: index.html index.php (or vice versa) as your default pages list. If it doesn't find any of those in the directory

Re: [PHP] Best way to do this: www.domain.com?page=var

2006-01-17 Thread tg-php
avoid creating a script whose only function was to redirect (via javascript, php, or whatever) so I think the server default page thing is the best solution here. If you don't have access to that kind of configuration option, then a PHP header() script is a close second choice. I'd o

RE: [PHP] Help with regular expressions

2006-01-17 Thread php-mail
was spaceless (spaced out?)... maybe worth a try? HTH Dan -- -Original Message- From: Al [mailto:[EMAIL PROTECTED] Sent: 17 January 2006 22:45 To: php-general@lists.php.net Subject: Re: [PHP] Help with regular expressions John Nichel wrote: > Carl Furst wrote: > >> Ok I

Re: [PHP] odd behavior

2006-01-19 Thread tg-php
Ok.. now maybe a constructive answer :) If I recall, PHP on Windows will look for PHP.INI in your Windows system folder (in this case C:\WINNT) first, then in the folder where PHP is installed. Deleting the PHP.INI under WINNT should be fine (sounds like removing that makes things work ok for

[PHP] Sessions

2006-01-19 Thread PHP Mail
Hi My site is running a custom session handler (into MySQL 3.28). all was well until I needed to test session in files. it was only a 5 minute test Now I can't get the DB sessions active. Absolutely nothing is registering in the DB PHP version is 4.3.10. Help please because I

RE: [PHP] Sessions

2006-01-19 Thread php-mail
ailto:[EMAIL PROTECTED] Sent: 19 January 2006 23:30 To: PHP Mail Cc: php-general@lists.php.net Subject: Re: [PHP] Sessions You changed php.ini back to 'user' instead of 'file' for the session handling? You re-started the web-server? (Apache, IIS, whatever) If it's

RE: [PHP] Sessions

2006-01-19 Thread php-mail
ver config but I'm getting there :) -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: 20 January 2006 00:33 To: php-mail Cc: [EMAIL PROTECTED]; php-general@lists.php.net Subject: RE: [PHP] Sessions On Thu, January 19, 2006 5:52 pm, php-mail wrote: > Just tried

Re: [PHP] Determining number of days in a selected month

2006-01-20 Thread tg-php
ge = = = Is there a way to easily tell PHP how many days there are in a selected month without writing the following out for each month: if($Month == "January") ~$NumberOfDays = 31; elseif($Month == "February") ~if($Year == "A Leap Year") ~~$NumberOfDays = 29; ~ ~el

Re: [PHP] Str to Int

2006-01-20 Thread tg-php
statement SHOULD come up "true" as a whole because $cardID = '' should always be true (unless the assignment fails). So regardless of is_int($cardID) succeeding or failing, $cardID = '' should be true so this statement will always be true. 4. $cardID = intval($card

[PHP] Re: [PHP-DB] auto_increment and INSERT INTO

2006-01-21 Thread tg-php
y I may find out what value was assigned to the $auto_increment_variable when the INSERT INTO query is issued? Thanks. Ron ___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com. -- PHP

Re: [PHP] security of uploaded gif files

2006-01-22 Thread PHP Superman
i think you guys are talking about the using the gd library, it may be possible so when you upload check for any php code or other data On 1/22/06, Rory Browne <[EMAIL PROTECTED]> wrote: > > I'd be a bit skeptical about the possibly of embedding PHP code inside > a GIF file. C

Re: [PHP] security of uploaded gif files

2006-01-22 Thread PHP Superman
retty secure On 1/22/06, Sameer N Ingole <[EMAIL PROTECTED]> wrote: > > Rory Browne wrote: > > >I'd be a bit skeptical about the possibly of embedding PHP code inside > >a GIF file. Could you outline how he performed the task? > > > >On 1/22/06, jonathan &

Re: [PHP] PHP not seeing MySQL functions

2006-01-22 Thread PHP Superman
did you uncomment the line that adds the proper php module(mysqli_blahblahblah.dll)? On 1/16/06, Jonathan Duncan <[EMAIL PROTECTED]> wrote: > > I just got a new web server with RedHat Enterprise Linux 4 on it. It came > with MySQL 4.1.x and PHP 4.3.9 on it. I uninstalled the

Re: [PHP] PHP not seeing MySQL functions

2006-01-24 Thread PHP Superman
ah sorry, i assumed windows box On 1/22/06, John Nichel <[EMAIL PROTECTED]> wrote: > > PHP Superman wrote: > > did you uncomment the line that adds the proper php > > module(mysqli_blahblahblah.dll)? > > How would loading the mysqli modules help the poster with

Re: [PHP] $_SESSION saves all values but Class -- works on one server but not another?! [second plead for help]

2006-01-24 Thread tg-php
SSION values. This code works fine on a debian box. WORKING BOX: [snip] ___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] way to write mysqli result set to disk

2006-01-25 Thread PHP Superman
noes . . . http://dev.mysql.com/doc/refman/5.1/en/select.html Select > statements are a mysql 5.1 only feature. We're gonna die . . .) > > > David Hall > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- Hi Everyone, I am running PHP 5 on Windosws XP SP2 with MySQL5, Bye Now!

RE: [PHP] Truncate words in multiple paragraphs

2006-02-03 Thread php-mail
To: Verdon Vaillancourt Cc: [EMAIL PROTECTED]; John Meyer; PHP eMail List Subject: Re: [PHP] Truncate words in multiple paragraphs Just do this: $string = str_replace("\n", "", $string); $string = trim_text($string); $string = str_replace("", "\n", $string);

RE: [PHP] Truncate words in multiple paragraphs

2006-02-03 Thread php-mail
Nuts Missed the need to preserve line breaks Sorry Dan -Original Message- From: tedd [mailto:[EMAIL PROTECTED] Sent: 03 February 2006 23:06 To: php-general@lists.php.net Subject: Re: [PHP] Truncate words in multiple paragraphs >Hi :) > >I am using the following function (tha

RE: [PHP] Regular expression

2006-02-03 Thread php-mail
EMAIL PROTECTED] Sent: 03 February 2006 23:34 To: Barry Cc: php-general@lists.php.net Subject: Re: [PHP] Regular expression $last_comma = strrpos($string, ","); $string = substr($string, 0, $last_comma) . ' and ' . substr($string, $last_comma); I probably have a one-off error in th

RE: [PHP] system('bell'); ?

2006-02-04 Thread php-mail
Suppose someone had to :) -Original Message- From: Dan Harrington [mailto:[EMAIL PROTECTED] Sent: 04 February 2006 19:50 To: php-general@lists.php.net Subject: RE: [PHP] system('bell'); ? Ask not for whom the bell tolls, it tolls for thee! -Original Message- F

[PHP] PHP job postings?

2006-02-16 Thread tg-php
Just wondering if anyone know of a mailing list of forum specifically dedicated to soliciting for programmers to fill PHP programming positions? I see people post to this list periodically but it really doesn't seem like the right place. Our project is going to be expanding quite a bit a

Re: [PHP] PHP job postings + previous hosting question

2006-02-17 Thread tg-php
licly or privately). I'm not sure how I missed the links section on php.net for the job postings, I went through that site pretty thoroughly I thought (hah guess not), and thanks for all the other recommendations. There's a PHP group that meets in DC that I had talked to my boss abou

Re: [PHP] Last Sunday in September?

2006-02-17 Thread tg-php
on September 25th 2006. I was thinking that using the strtotime() would get me this information possibly? Is there an easy way to get this information? Pseudo code: If ((date > last Sunday in September this year) && (date < Jan 1 of next year)) year++ -- PHP General Maili

Re: [PHP] "!" in front of a variable?

2006-02-17 Thread tg-php
nce AS and once AS NOT. -- Atentamente, J. Rafael Salazar Maga~a Innox - Innovaci~n Inteligente Tel: +52 (33) 3615 5348 ext. 205 / 01 800 2-SOFTWARE [EMAIL PROTECTED] http://www.innox.com.mx -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsu

Re: [PHP] What does a "?" represent

2006-02-17 Thread tg-php
array($tid) ); Jeff ___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP documentation solutions? (PHPDoc, Doxygen, ???)

2006-02-20 Thread tg-php
http://www.ePrompter.com. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Sydney Australia PHP meet talk brag See phpsydney.com for details

2001-02-03 Thread PHP Sydney
What more could you want. Sydney's glorious weather. PHP's magnificent scripting language. The keenest PHP users. All at one meeting. February 20. Willoughby. Talk about your experience. Feb 20 will feature PHP3 to PHP4 and e-commerce. Brag about your successes. Brag about your fail

[PHP] PHP && mySQL

2001-02-07 Thread PHP user
,ex http://www.abc.com/xxx.html . I can get xxx.html from my SQL. when I type in URL from brouze ,ex http://www.abc.com/yyy.html I can get yyy.html from my SQL. How can I do this? Is it posible to create it? Please answer for me. Thank you yui -- PHP General Mailing List (http://www.php.net

[PHP] Create Your Own Script Directory

2002-12-11 Thread PHP Mailing List
For any of you interested, I've created a set of scripts that let you run your own PHP Scripts Directory, like the /PHP/Scripts_and_Programs/ directory of HotScripts for example. I originally made this for my own site, but I decided to release it to the public instead =) It has all the

[PHP] Free MySQL Hosting...again

2002-12-11 Thread PHP Mailing List
I had a little trouble with my cable modem before, but the Free MySQL Hosting is back up if any of you are interested. =) http://mysql.nukedweb.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Using fopen() to open a php file with variables.

2002-12-11 Thread Jay \(PHP List\)
Okay, I need to retrieve the output of a php file with variables being passed to it. Example: $calendar_file = "make_calendar.php3?month=$month&year=$year"; $fp = $fp = fopen("$calendar_file", "r"); while (!feof ($fp)) { $buffer = fgets($fp, 4096);

[PHP] Strange XML/file read problem

2002-12-17 Thread news . php . net
I'm getting the same exact problem as this: http://marc.theaimsgroup.com/?l=php-general&m=102879705713315&w=2 Here's the code that's giving me problems: while ($data = fread($fp, 4096)) { xml_parse($parser, $data, feof($fp)) or die(sprintf(&q

Re: [PHP] Avoiding Repeat Posts

2003-01-04 Thread Charles likes PHP
How about saving a timestamp when the user posts a message and when he posts another message check whether the user already posted a message in the past, let's say, minute. I saw this used in a lot of forums... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Get your *own* IP...?!

2003-01-06 Thread Charles likes PHP
Does anyone know a way to fetch your own IP-adress? I need it because I run a web server on my computer with a dynamic-IP so I need it to change all the URLs it creates dynamically... Thanks! -Charles -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Re: Get your *own* IP...?!

2003-01-06 Thread Charles likes PHP
I use Windows XP Pro...:-S "Charles Likes Php" <[EMAIL PROTECTED]> schreef in bericht [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Does anyone know a way to fetch your own IP-adress? I need it because I run > a web server on my computer with a dynamic-IP so I ne

[PHP] Re: Get your *own* IP...?!

2003-01-06 Thread Charles likes PHP
No, it has to be an absolute path... $_SERVER["SERVER_ADDR"] seems to be empty on my system and I couldn't find anything about that variable in the manual either... Aaargghhh! "Charles Likes Php" <[EMAIL PROTECTED]> schreef in bericht [EMAIL PROTECTED]">

RE: [PHP] mysql_num_rows() error

2003-01-09 Thread Jay \(PHP List\)
You query is incorrect. Try doing the same query from the MySQL clent. |-> -Original Message- |-> From: Phil Powell [mailto:[EMAIL PROTECTED]] |-> Sent: Thursday, January 09, 2003 7:46 PM |-> To: [EMAIL PROTECTED]; [EMAIL PROTECTED] |-> Subject: [PHP] mysql_n

[PHP] FTP not enabled in RedHat 7.x distro

2003-02-17 Thread role . php-general
Hi, Installed RPM's from RedHat (latest patches) and using PHP with Apache under RH7.1 Linux, lots of scripts, no problems. The hitch is that a user just tried ftp_connect(), and got the "unknown function" error. Okay, so I expected this to be a missing php.so loadable modu

Re[2]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-17 Thread role . php-general
nction not found" suggests the functionality just isn't present. Do you have an FTP extension mentioned in your PHP.ini file? The doc's aren't clear on this point ;) -- Best regards, James. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] I have a problem with MsSQL

2003-02-18 Thread role . php-general
Jimmy, In response to your mail of Monday 17 February 2003 at 18:54:02: JH> My problem is the characters in spanish: JH> example: JH> Construcción (Data of MsSQL Server) JH> Result in web with PHP: JH> Construcci¢n Are you aware of HTML codes like the following - some

Re[2]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-18 Thread role . php-general
Martin, In response to your mail of Monday 17 February 2003 at 18:10:31: MM> Use phpinfo() to know how your PHP was compiled. If it comes as a MM> module, you should see a --enable-feature=shared. Don't know it MM> ftp support can be compiled as shared, but Indeed - I think t

Re[4]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-18 Thread role . php-general
Martin, In response to your mail of Monday 17 February 2003 at 18:27:05: MM> My RH 7.3 php (distributed by RH) has --enable-ftp, so it was MM> compiled with the ftp support. MM> Check yor sintax. Could have a typo somewhere. Very weird - I thought RedHat would have enabled it too. I

Re[6]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-19 Thread role . php-general
eleases too, so I'd have thought so. However, the last RPM update did mush a couple of things that normally it gets right. I wonder if the last patch was duff? I was wondering if you were able to check the exact RH release of your PHP package, to see if it matched mine? MM> When you run ph

Re[8]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-19 Thread role . php-general
Martin, In response to your mail of Wednesday 19 February 2003 at 12:07:01: ==>> rpm -q php MM> php-4.1.2-7.3.6 Hm.. Same version here, and also a .6 release, but for 7.1 instead of 7.3, which leads me to suspect someone at RH fudged the build last time they released a patch. I

[PHP] remote cvs server

2003-06-26 Thread php dot net
I started to implement cvs connection protocole with php with a socket connection. As it is poorly documented can anybody tip me in that task??? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] problem with popen and cvs

2003-06-26 Thread php dot net
$handle = popen("cvs --help", "r"); while(!feof($handle)) { echo fgets($handle, 3); } pclose($handle); i get a valid handle but no output ! popen failed only with cvs command (cvs.exe), if anybody could help me :-) -- PHP General Mailing List (http://www.php.

[PHP] Re: Strange output issue

2003-06-26 Thread php dot net
This problem can comes from your php.ini, at the section : ; Automatically add files before or after any PHP document. auto_prepend_file = auto_append_file = -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Install PHP on windows using PHP installler

2003-06-26 Thread php dot net
depend on which web server : for apache : use php as a module for IIS (very bad id) : use php as a ISAPI In either case don't use php as a CGI, this won't allow persistant connection (very usefull for mysql) Hope that helped ! k -- PHP General Mailing List (http://www.ph

[PHP] Can you guys do me a favor?

2002-11-02 Thread PHP Mailing List
te, and email me with any bugs, comments and suggestions. If running your own TopSite isn't your cup o' tea, then you can join the TopSite I've already created, for PHP sites (the URLs for all of these are below). I could also use the help so I can create an administration panel for TopS

[PHP] Multple Form Values with Same Name

2002-11-07 Thread PHP Mailing List
I'm working on converting a pre-existing website for a company, from something called Lasso, into PHP. This domain name registration site uses the same form value, "$Suffix" as the checkbox values for all the TLDs they offer. I was originally under the impression PHP would put t

[PHP] Free MySQL Hosting :)

2002-11-19 Thread PHP Mailing List
As a project I'm working on that will later manifest into something more, I'm offering free MySQL hosting on one of my servers. Just enter the desired username and password, and 3 databases will be created for you to use from your PHP scripts. The info you'll need to conne

[PHP] New Site to submit your scripts to..

2002-11-19 Thread PHP Mailing List
I've recently finished creating a Script Index (almost identical to HotScripts) for people to submit their PHP (and Perl) scripts. The database right now is over 7,000 (both PHP and Perl), but only because I've collected the data from other sites. If you have a script, I ask of you

[PHP] PHP as a proxy to an htaccess protected site.

2002-06-22 Thread Josepablo Pérez - PHP -
so then I have another login prompt for the frames. My question is, is there anyway I can fix problem 1, and in problem 2 is there anyway to proxy this in a better way, where you input the login once and it stay there so i dont get any more login prompts? -- PHP General Mailing List (http://w

RE: [PHP] picturing webpage

2004-01-11 Thread PHP Email List
the unknown! Good Luck! -Original Message- From: Ryan A [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 2:58 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [PHP] picturing webpage Hey, if they are paying for this service of getting thumbnails.maybe I can write a

[PHP] Re: [PHP-DEV] pspell/aspell breaking

2001-03-02 Thread PHP development @echospace
sage - From: Seth Northrop To: [EMAIL PROTECTED],[EMAIL PROTECTED] Sent: Fri, 2 Mar 2001 11:16:13 -0800 (PST) Subject: Re: [PHP-DEV] pspell/aspell breaking On Fri, 2 Mar 2001, PHP development @echospace wrote: > I remember being able to compile, but not use pspell on a RH7 machine. Never

[PHP] Re: Need Feedback

2001-04-15 Thread PHP General List
;more months. I have a PHP and a MYSQL list db, here are the URLs: > >http://www.summittech.com/mysqlmail.php3 >http://www.summittech.com/phpgenmail.php3 > >They are free and I am not doing anything with the data. > >Let me know, > >David Fordham > --

Re: [PHP] mysql_escape_string

2001-12-26 Thread Jim Lucas [php]
where is the escaping happening first off? - Original Message - From: "phantom" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 26, 2001 2:02 PM Subject: [PHP] mysql_escape_string > How do I remove the slashes from mysql_esca

Re: [PHP] Warning: Cannot send session cookie

2001-12-26 Thread Jim Lucas [php]
take the closing php tag from the end of the first line plus the openning tag from the begining of the second line. that is sending a line feed to the browser. Jim - Original Message - From: "David Jackson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesda

Re: [PHP] Translating email to (real) plain text...

2001-12-27 Thread Jim Lucas [php]
I was just reading the other day the php has imap function that give you the ability to get only the body of the message. have your cron job get that and then strip HTML tags on that. Don't see why that wouldn't work. http://www.php.net/manual/en/function.imap-body.php Jim

Re: [PHP] Translating email to (real) plain text...

2001-12-27 Thread Jim Lucas [php]
and this http://www.php.net/manual/en/function.imap-fetchstructure.php - Original Message - From: "David Bouw" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, December 27, 2001 11:44 AM Subject: [PHP] Translating email to

Re: [PHP] Exec as user

2001-12-27 Thread Jim Lucas [php]
I don't believe that the system variables are available to php. I work on *nix mostly, but I have a windows machine at home running php and I can't access any of my system var's. - Original Message - From: "charlesk " <[EMAIL PROTECTED]> To: <[EMAIL PR

Re: [PHP] is_uploaded_file

2001-12-28 Thread Jim Lucas [php]
ent: Friday, December 28, 2001 7:35 AM Subject: Re: [PHP] is_uploaded_file > I had 4.0.0 for a year or more and used that stuff quite well. > And the docs says : > "For earlier versions of PHP, you'll need to do something like > the following. > > Note: This will

Re: [PHP] File upload memory useage.

2001-12-29 Thread Jim Lucas [php]
Well, I just finished a ftp program that originally used php to catch the uploaded file, but soon realized the it did load it into memory then dump it into a file. I finally ended up using perl running with xinetd to capture the uploaded file and drop it into a file. then let php play with it

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

2001-12-31 Thread Jim Lucas [php]
lt;[EMAIL PROTECTED]> Sent: Monday, December 31, 2001 3:06 AM Subject: [PHP] Select box won't display in Netscape 4.xx > Hi, > > I'm developing a website for multiple browsers. In Netscape 4.xx (both > Win98 and Linux versions), the php-scripts display the select boxes in >

Re: [PHP] Sessions Problems!

2001-12-31 Thread Jim Lucas [php]
ember 31, 2001 2:58 AM Subject: [PHP] Sessions Problems! > I am having problems with my sessions. I authenticate the user against a > mysql db. The authentication works fine and the session script works fine > for all my other domains except one. They all reside on the same webserver >

[PHP] Q: PHP3 / Read STDIN when missing Content-Type

2002-01-03 Thread role+php-general
I'm stuck with PHP3 at present and need to process POSTed data that has a missing Content-Type, so the HTTP_POST_VARS don't work. Is the raw STDIN data accessible in this situation, please? Pretty please? Cheers, J. -- PHP General Mailing List (http://www.php.net/) To unsubscri

Re[2]: [PHP] Holy Moly...

2002-01-03 Thread role+php-general
>> On Wed, 2 Jan 2002, Julie Hull wrote: >> >> > Could someone please direct a total novice to the best PHP >> > beginner news group. Just to many to choose from ~:) >> > >> > Thank You, >> > Julie ~:) Jump right in, but be sure to rea

Re[2]: [PHP] Q: PHP3 / Read STDIN when missing Content-Type

2002-01-03 Thread role+php-general
this only works when you run PHP scripts BS> from the prompt. Thanks for your response. I think the problem is actually to do with STDIN having already been gobbled up by PHP when it parsed the input, and therefore there is no more data available -- maybe it _is_ available when the Content-t

Re: [PHP] Regular Expression

2002-01-03 Thread Jim Lucas [php]
sage - From: "[-^-!-%-" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 02, 2002 12:45 PM Subject: [PHP] Regular Expression > > Hello everyone! > > I'm trying to get the text inside the tag, using regular > expression. > > $a

Re: [PHP] easy quickie..

2002-01-03 Thread Jim Lucas [php]
$GLOBALS['HTTP_REFERER'] Jim - Original Message - From: "Kelly Meeks" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 02, 2002 10:15 AM Subject: [PHP] easy quickie.. Happy New Year, Does php set a variable that tells you the url

Re: [PHP] ftp functions

2002-01-21 Thread Jim Lucas [php]
Lucas - Original Message - From: "sundogcurt" <[EMAIL PROTECTED]> To: "GENERAL PHP LIST" <[EMAIL PROTECTED]> Sent: Monday, January 21, 2002 10:47 AM Subject: [PHP] ftp functions > > Before I get flamed for not reading the manual or trying on my own, I

Re: [PHP] ftp functions

2002-01-21 Thread Jim Lucas [php]
machine. Jim - Original Message - From: "sundogcurt" <[EMAIL PROTECTED]> To: "GENERAL PHP LIST" <[EMAIL PROTECTED]> Sent: Monday, January 21, 2002 11:34 AM Subject: Re: [PHP] ftp functions > Would you suggest that I use the copy function instead? &g

Re: [PHP] foreach array into mail isn´t working

2002-01-21 Thread Jim Lucas [php]
Try this: \nTo: \"To Name\" <$address>"); } ?> Jim Lucas bend.com - Original Message - From: "DL Neil" <[EMAIL PROTECTED]> To: "Josepablo Pérez" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, January 21, 2002 1:

Re: [PHP] function trouble: pass by referrence

2002-01-21 Thread Jim Lucas [php]
[$k] = strip_tags($i); } } and after this function $GLOBALS[HTTP_POST_VARS] will look like you want it to. Jim Lucas bend.com - Original Message - From: "Bryan McCloskey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 21, 2002 2:19 PM Subject: [PHP]

Re: [PHP] 2d array help

2002-01-21 Thread Jim Lucas [php]
ue", ...); are you wanting to have the above be referanced by the pkgid ? Jim Lucas bend.com - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 21, 2002 2:51 PM Subject: [PHP] 2d array help > arg- trying to get the data that

Re: [PHP] Uploads

2002-01-21 Thread Jim Lucas [php]
make sure you increase your script timeout limit. Jim Lucas - Original Message - From: "Ronald Tezuka" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 21, 2002 2:50 PM Subject: [PHP] Uploads > If anyone can help me out, that'd be great

Re: [PHP] smarter code (mySQL arrays)

2002-01-21 Thread Jim Lucas [php]
Lucas bend.com - Original Message - From: "Justin French" <[EMAIL PROTECTED]> To: "php" <[EMAIL PROTECTED]> Sent: Monday, January 21, 2002 4:12 PM Subject: [PHP] smarter code (mySQL arrays) > Hi all, > > I've got into the habbit of pulling data

[PHP] Question about 4.0.6-7 Mysql 4.0.1 and Redhat 7.2

2002-01-23 Thread Jim Lucas [php]
any help would be great. Jim Lucas -- 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] mixed datatype

2002-01-28 Thread Jim Lucas [php]
ot;hi there, my name is Jim." ?> Hope this helps. Jim Lucas - Original Message - From: "charlesk " <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 28, 2002 8:23 AM Subject: [PHP] mixed datatype > How do you make a function like > bool s

Re: [PHP] Multiple INI Files

2002-01-28 Thread Jim Lucas [php]
n the httpd.conf file. Jim Lucas - Original Message - From: "charlesk " <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 28, 2002 10:10 AM Subject: [PHP] Multiple INI Files > We host many sites with PHP. Is there any way to have each site use a

Re: [PHP] Getting an include file into a string after PHP evaluates the vars?

2002-01-29 Thread Jim Lucas [php]
al/en/function.eval.php Jim Lucas - Original Message - From: "Kevin Stone" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 29, 2002 3:51 PM Subject: [PHP] Getting an include file into a string after PHP evaluates the vars? > I'm using tem

Re: [PHP] PHP & Mysql

2002-01-29 Thread Jim Lucas [php]
you must make sure that the version of PHP that is being used was built with mysql support and/or that the drivers are being loaded for mysql. Jim Lucas - Original Message - From: "Uma Shankari T." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, Ja

Re: [PHP] Redirect problem.... UGH!!

2002-01-30 Thread Jim Lucas [php]
try puting an exit(); after the header(). Jim Lucas - Original Message - From: "Ben Turner" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 30, 2002 10:47 AM Subject: [PHP] Redirect problem UGH!! > I am trying to put together a very

Re: [PHP] MySQL Fetch_Array VS. Fetch_Object

2002-01-30 Thread Jim Lucas [php]
my question to you is, why do you want to put them into "another" variable? the $row["field_name"]; is already a variable. why not just use that instead? Jim Lucas - Original Message - From: "Bryan Gintz" <[EMAIL PROTECTED]> To: "PHP List" &

Re: [PHP] MySQL Fetch_Array VS. Fetch_Object

2002-01-30 Thread Jim Lucas [php]
oh and mysql_fetch_object is a little slower then mysql_fetch_array() Jim Lucas - Original Message - From: "Bryan Gintz" <[EMAIL PROTECTED]> To: "PHP List" <[EMAIL PROTECTED]> Sent: Wednesday, January 30, 2002 10:48 AM Subject: [PHP] MySQL Fetch_Array

Re: [PHP] Getting an include file into a string after PHP evaluates the vars?

2002-01-30 Thread Jim Lucas [php]
how you suggest the solution is what I use all the time. But I thought you wanted to work with is as a string. sorry for the confusion. Jim Lucas - Original Message - From: "Kevin Stone" <[EMAIL PROTECTED]> To: "'Jim Lucas [php]'" <[EMAIL PROTECTED

Re: [PHP] php and sym links

2002-02-01 Thread Jim Lucas [php]
nope, should work. what, if any, error messages are you getting? Jim Lucas - Original Message - From: "swade" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 01, 2002 12:20 PM Subject: [PHP] php and sym links > > hi, > Is there somethi

Re: [PHP] adding hidden form values to array

2002-02-01 Thread Jim Lucas [php]
. Jim Lucas - Original Message - From: "Erik Price" <[EMAIL PROTECTED]> To: "PHP (E-mail)" <[EMAIL PROTECTED]> Sent: Friday, February 01, 2002 12:42 PM Subject: [PHP] adding hidden form values to array > In my system, a user can query a database which is

Re: [PHP] Address unknown

2002-02-02 Thread Jim Lucas [php]
are looking to find. Jim Lucas - Original Message - From: "hugh danaher" <[EMAIL PROTECTED]> To: "Php-General" <[EMAIL PROTECTED]> Sent: Saturday, February 02, 2002 1:32 PM Subject: [PHP] Address unknown Help, Some one please tell me to RTFN!, but first

Re: [PHP] date problems

2002-02-04 Thread Jim Lucas [php]
sounds like it might have something to do with leap year. Jim Lucas - Original Message - From: "toni baker" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 04, 2002 12:03 PM Subject: [PHP] date problems > $date1 = "12/12/2001"; &

Re: [PHP] Formatting a MYSQL time

2002-02-07 Thread Jim Lucas [php]
that into the date function and if should work. Jim Lucas www.bend.com - Original Message - From: "Frank Miller" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 07, 2002 9:21 AM Subject: [PHP] Formatting a MYSQL time > Hello, > >

<    5   6   7   8   9   10   11   12   13   14   >