Re: [PHP] Quote in input tag value?

2002-02-07 Thread Jim Lucas [php]
you might want to check your coding, but that is a parse error waiting to happen. Jim Lucas - Original Message - From: "Rick Emery" <[EMAIL PROTECTED]> To: "'Nathan Cassano'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, Febru

Re: [PHP] Checking for plus signs?

2002-02-07 Thread Jim Lucas [php]
try this if(eregi("/\+/",$variable)) Jim Lucas - Original Message - From: "Leif K-Brooks" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 07, 2002 5:40 PM Subject: [PHP] Checking for plus signs? > I'm trying "if(ereg

Re: [PHP] a user_auth script. 1 down any more ?

2002-02-12 Thread Jim Lucas [php]
Try closing all your "{" & "}". count them up, you are missing the closing bracket on your while statment.. Jim Lucas - Original Message - From: "Matthew Darcy" <[EMAIL PROTECTED]> To: "hugh danaher" <[EMAIL PROTECTED]>; "ph

Re: [PHP] a user_auth script. 1 down any more ?

2002-02-12 Thread Jim Lucas [php]
forgive me, I did count wrong, the problem happens to be that you are using an ELSE on the end of a while loop. :P Jim Lucas - Original Message - From: "Matthew Darcy" <[EMAIL PROTECTED]> To: "Jim Lucas [php]" <[EMAIL PROTECTED]>; "hugh danahe

Re: [PHP] browser reload button

2002-02-14 Thread Jim Lucas [php]
a unique sessions value, you can pretty much be certain that you wouldn't get two of the same anytime in the near future. Jim Lucas - Original Message - From: "Rodrigo Peres" <[EMAIL PROTECTED]> To: "PHP" <[EMAIL PROTECTED]> Sent: Thursday, February 14

Re: [PHP] array variable name

2002-02-14 Thread Jim Lucas [php]
I think you are looking for the function called array_key() http://www.php.net/manual/en/function.array-keys.php Jim Lucas - Original Message - From: "Tomek Golembiewski" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 14, 2002 6:20 A

Re: [PHP] pg_result pg_fetch_row pg_fetch_array

2002-02-18 Thread Jim Lucas [php]
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 18, 2002 8:55 AM Subject: [PHP] pg_result pg_fetch_row pg_fetch_array > > Which is the diference between this functions: > > pg_result, pg_fetch_row, and pg_fetch_array > > > >

Re: [PHP] header problem

2002-02-26 Thread Jim Lucas [php]
question, is this on a process page or on a page that renders text? Jim Lucas - Original Message - From: "Michael P. Carel" <[EMAIL PROTECTED]> To: "george Pitcher" <[EMAIL PROTECTED]> Cc: "php" <[EMAIL PROTECTED]> Sent: Monday, Feb

Re: [PHP] format text

2002-02-26 Thread Jim Lucas [php]
try nl2br() it converts \n into Jim - Original Message - From: "eoghan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 26, 2002 2:23 AM Subject: [PHP] format text > hello > i am looking for a way of formatting my text > when i sele

Re: [PHP] Damned HTTP_HOST

2002-02-26 Thread Jim Lucas [php]
ray ($GLOBALS[HTTP_SERVER_VARS]); ?> Jim Lucas - Original Message - From: "Dominique van der Wal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 26, 2002 6:38 AM Subject: [PHP] Damned HTTP_HOST > Hi, > > I'm trying to

Re: [PHP] Damned HTTP_HOST

2002-02-26 Thread Jim Lucas [php]
I should mention that if you HTTP_HOST resolves to a DNS entry, that is what gets displayed in the HTTP_HOST Jim - Original Message - From: "Dominique van der Wal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 26, 2002 6:38 AM Subject: [PHP] D

Re: [PHP] safe mode and file handling

2002-03-01 Thread Jim Lucas [php]
t; <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 01, 2002 1:21 PM Subject: [PHP] safe mode and file handling > I and my www space provider have fought with a problem. All > files/directories created by PHP are owned by nobody/nobody and we want > them to be creat

Re: [PHP] php array

2002-03-12 Thread Jim Lucas [php]
t;[EMAIL PROTECTED]> To: "PHP" <[EMAIL PROTECTED]> Sent: Tuesday, March 12, 2002 10:10 AM Subject: [PHP] php array > Hi list, > > I think this could be an idiot question but I couldn't find an answer. > I have 4 input text in a html, and I'd like to store the

Re: [PHP] require() vs include()

2002-03-14 Thread Jim Lucas [php]
Plus, depending on how you are calling the file. Meaning if the file name that you are calling is a static file name or dynamic file name require() and require_once() will include a file before the php parser starts its job, but this will only happen if the name isn't dynamic. meaning th

Re: [PHP] $HTTP_SESSION_VARS with unset()

2002-03-14 Thread Jim Lucas [php]
: <[EMAIL PROTECTED]> Sent: Thursday, March 14, 2002 4:54 PM Subject: [PHP] $HTTP_SESSION_VARS with unset() > when someone logs in, it sets $HTTP_SESSION_VARS with the appropriate > information. to log them out, I tried just using > unset($HTTP_SESSION_VARS['valid_user']) b

Re: [PHP] included files not reread by php when i edit the files

2002-03-22 Thread Jim Lucas [php]
how about giving an example of the error message(s)... - Original Message - From: "Chris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 22, 2002 12:59 PM Subject: [PHP] included files not reread by php when i edit the files > While editi

Re: [PHP] Still REG EX

2002-03-23 Thread Jim Lucas [php]
what are you trying to do? Jim Lucas www.bend.com - Original Message - From: "John Fishworld" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 23, 2002 4:33 PM Subject: [PHP] Still REG EX > I'm still playing about trying to validate

Re: [PHP] Array Question

2002-03-26 Thread Jim Lucas [php]
com - Original Message - From: "Rick Emery" <[EMAIL PROTECTED]> To: "'John Fishworld'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, March 26, 2002 10:07 AM Subject: RE: [PHP] Array Question > $n =sizeof($state); > > $sr

Re: [PHP] Array in a Loop Question

2002-03-26 Thread Jim Lucas [php]
($address AS $k => $v) { echo "$k : $v"; } Jim Lucas www.bend.com - Original Message - From: "Jeff Hatcher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 26, 2002 10:18 AM Subject: [PHP] Array in a Loop Question I have a form that g

[PHP] how did this become an array?

2002-04-02 Thread The PHP newbie
Hi, I am trying to figure out a part of the PHP code which belongs to one of the files that is responsible for operating a discussion group. I was examining some of a part of the code which produces the total number of messages and displays the subject of the message. I encountered a part

Re: [PHP] Phone number validation

2002-04-08 Thread Jim Lucas [php]
" Jim Lucas - Original Message - From: "Gary" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 06, 2002 6:52 PM Subject: [PHP] Phone number validation > Hi All, > I tried to cut a corner and use an alphabetic validation I am using &

Re: [PHP] counter for HIGH traffic site

2002-04-08 Thread Jim Lucas [php]
as long as you are only inserting information into the mysql db on each page load, then you shouldn't have a problem. make sure you keep you indecies down to a minimum. Jim Lucas - Original Message - From: "Craig Westerman" <[EMAIL PROTECTED]> To: "php-gener

Re: [PHP] Reading semi formatted text file

2001-12-24 Thread Jim Lucas [php]
ed array called new_array that contains your rows broken up into key=>value pairs. Jim - Original Message - From: "Chris Steitz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 24, 2001 9:12 AM Subject: [PHP] Reading semi formatted text file 2

Re: [PHP] Changing "From" Info in eMail!

2001-12-24 Thread Jim Lucas [php]
what does the $from var look like? - Original Message - From: "Thomas Edison Jr." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 24, 2001 10:35 AM Subject: [PHP] Changing "From" Info in eMail! > Hi, > > I'm using the

Re: [PHP] faxing in PHP

2001-12-24 Thread Jim Lucas [php]
hylafax I am working on a project right now to set this up on a linux box. Should work great. Jim - Original Message - From: "LDL Enterprise" <[EMAIL PROTECTED]> To: "*PHP-General mail list" <[EMAIL PROTECTED]> Sent: Monday, December 24, 2001 12:15 PM Sub

[PHP] Need Feedback

2001-04-10 Thread PHP General List
least a few 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 -- PHP General Mailing List (http

[PHP] Running external programs

2001-06-23 Thread Beginning PHP Programmer
a program from a simple PHP script like the following:       $commandstring = "cscript d:\\temp\\rgroup.vbs -t a -g new.group.01";    passthru($commandstring);?>   I get this Warning..   Warning: Unable to fork [cscript d:\temp\rgroup.vbs -t a -g new.group.01] in d:\inetpub\ww

[PHP] Program execution functions doesn´t work in my system

2001-06-24 Thread Beginning PHP Programmer
Hi   In the PHP manual there are some program execution functions like passthru(), exec() and system(). I´ve got PHP4 installed on IIS 5.0 on Windows 2000 Server, and it works fine.   I tried with a very simple script like the following:   $commandstring = "cmd";

[PHP] component library

2001-08-12 Thread lolodev news php
as cold fusion (custom tags), can i made some component to reuse in all my script ? is a function visible every where in PHP ? can i developp a script with a name, and call this script by an include function and passing parameters ? -- PHP General Mailing List (http://www.php.net/) To

[PHP] variable $PATH_INFO

2001-08-12 Thread lolodev news php
why can i read PATH_INFO server variable with apache under windows server ? with IIS 5 it's OK how can i ? -> Warning: Undefined variable: PATH_INFO in e:\sitephp\php_edit\htdocs\var.php on line 3 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL P

[PHP] Re: variable $PATH_INFO

2001-08-13 Thread lolodev news php
PHP is configured to loadModule php4ts.dll i don't know configured to pass that variable on ! Richard Lynch <[EMAIL PROTECTED]> a écrit dans le message : 014601c12459$6e069920$[EMAIL PROTECTED] > > why can i read PATH_INFO server variable with apache under windows server >

[PHP] to richard lynch

2001-08-15 Thread lolodev news php
i'm using LoadModule/AddModule for php4 -- 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] php query for mysql table

2001-08-20 Thread php mailing list
select * from yourtable where question like '%life%' -- Original Message -- From: "Wolfgang Schneider" <[EMAIL PROTECTED]> Reply-To: "Wolfgang Schneider" <[EMAIL PROTECTED]> Date: Mon, 20 Aug 2001 12:22:15 +020

Re: [PHP] confusing problem w/sessions

2001-08-20 Thread php mailing list
on work. > >Accessing at this document directly from the server (it is a SuSE 7.2 PE - >running PHP 4.0.4 >and apache 1.3.9) i find out the following problem: > >Warning: cannot send session cookie - headers already sent (output started >at ) > >and > >Warning: can

Re: [PHP] urlencode - urldecode

2004-08-08 Thread PHP Gen Newbie
Hi, Thanks again John, point taken...will not trust the browser, will use sessions :-) Cheers, -Mag --- John Holmes <[EMAIL PROTECTED]> wrote: > PHP Gen wrote: > > > // sending file: > > > $one=rawurlencode("dir_name=$dir_name&imgs_dir=$imgs_dir&

Re: [PHP] PHP AS an FTP server

2009-02-17 Thread j&#x27;s php general
On Wed, Feb 18, 2009 at 4:24 AM, Ashley Sheridan wrote: > I used vsftp for several FTP systems at work, and bar a few problems > (errors on my part!) they work just fine. I've even got PHP talking to > various Bash scripts to manage users and permissions for the FTP, and

Re: [PHP] User Authentication across multiple server

2009-03-06 Thread j&#x27;s php general
nd crypt that (RC4 works well) and then check for the > cookie on both sites. Kind of like a "Remember me" type deal > > -- Paul > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > I believe you ca

Re: [PHP] [php] scheduled task in php

2009-04-03 Thread j&#x27;s php general
On Fri, Apr 3, 2009 at 7:49 PM, Andrew Williams wrote: > does anyone knows the the following is not working: > > C:\PHP\php.exe  D:\DEMO\index.php?action=run&run=1 > The querystring does not have an effect from the command line, it is part of the HTTP protocol. Use console opt

Re: [PHP] ftp_put issues

2009-04-16 Thread j&#x27;s php general
On Thu, Apr 16, 2009 at 9:27 PM, James wrote: > Hi, yeah ftp manually works just fine using the same login too. > > James > > -Original Message- > From: Chris [mailto:dmag...@gmail.com] > Sent: Wednesday, April 15, 2009 10:09 PM > To: James > Cc: php-general@

Re: [PHP] ftp_put issues

2009-04-16 Thread j&#x27;s php general
On Thu, Apr 16, 2009 at 10:24 PM, James Hill wrote: > The ftpData function and in fact all the php stuff is running online on my > webserver. The pdf file is on my local machine, I'm trying to upload the > local pdf file to the server using ftp. > > > > The dest vari

[PHP] Re: Can this be done?

2009-05-05 Thread php news feed
Information from ESET Smart Security, version of virus signature database 4053 (20090505) __ The message was checked by ESET Smart Security. http://www.eset.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Touch screen programming help

2009-09-21 Thread Manish - dz - PHP
Hi Is it possible to do touch screen programming in PHP ? If it is then, how ? Please specify th specs with code. Thanks in advance, Regards, Manish

RE: [PHP] A quick ereg translation

2012-08-25 Thread SagaciousDev PHP-Dev
: Sat, 25 Aug 2012 23:10:08 +0200 > From: krebs@gmail.com > To: php-general@lists.php.net > Subject: Re: [PHP] A quick ereg translation > > Am 25.08.2012 23:06, schrieb Lester Caine: > > ereg('(.*)', $phpinfo, $regs); > > > > Pulls the body of

confirm subscribe to php-general@lists.php.net

2012-09-11 Thread php-general-help
Hi! This is the ezmlm program. I'm managing the php-general@lists.php.net mailing list. I'm working for my owner, who can be reached at php-general-ow...@lists.php.net. To confirm that you would like arch...@mail-archive.com added to the php-general mailing list, please send an e

RE: [PHP] PHP e-commerce questions

2004-04-10 Thread PHP Email List
> From: Matt Hedges [mailto:[EMAIL PROTECTED] > Subject: [PHP] PHP e-commerce questions > Hello. Hi! > I have built a site where people can register their weddings. I use > MySQL/PHP to handle the database. I wish to add a step where people must > pay to enter their in

RE: [PHP] Double mails

2004-04-16 Thread PHP Email List
> From: Chris W. Parker [mailto:[EMAIL PROTECTED] > [EMAIL PROTECTED] > Subject: RE: [PHP] Double mails > > Every mail comes twice... Well, every mail from the list. I had this happen a year ago on a Wolf Conservation List that I belong too, I contacted the email administrator a

RE: [PHP] Double mails

2004-04-16 Thread PHP Email List
Sorry this was meant for Kaleb, My bad, see WAY TOO EARLY IN THE MORNING > -Original Message- > From: PHP Email List [mailto:[EMAIL PROTECTED] > Sent: Saturday, April 17, 2004 12:04 AM > To: Chris W. Parker > Cc: [EMAIL PROTECTED] > Subject: RE: [PHP] Double mails &

RE: [PHP] Bookmark server

2004-04-18 Thread PHP Email List
> I am planning on writing a "bookmark server" in php. The idea is I will > have a database that stores all my internet favorites on a web server > some where, so if I am doing some web browsing away from home and find a > site I want to save, I can go to my bookmark s

RE: [PHP] Class Help Extended

2004-05-06 Thread PHP Email List
-Original Message- > From: Curt Zirzow [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 06, 2004 2:13 PM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] Class Help Extended > > > * Thus wrote Rob Adams ([EMAIL PROTECTED]): > > > > "Php Email List"

RE: [PHP] Script never returns from funktion.

2004-05-01 Thread PHP Email List
> Subject: [PHP] Script never returns from funktion. > Hi , i am having problems with a funktion call never returns from the > funktion. Now I'm still new to PHP so bare with me if this is wrong. But don't you have to assign the "authenticate()" function to so

RE: [PHP] protecting web page

2004-05-05 Thread PHP Email List
printing is a PDF file during setup. Your comparing apples to oranges here. PHP is server side, printing takes place on the client's machine. So they do have control over printing. You could check with Javascript folks, not sure if there is anything there that would allow for printing to

[PHP] Class Help

2004-05-05 Thread PHP Email List
now there's a reason, I just can't find it. Any help would be appreciated. Thanks. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Class Help Extended

2004-05-05 Thread PHP Email List
s that I am creating are going to be seperate "template" includes if you will where they also are going to be "include_once()" items aswell. Is it over redundant to have both of the files includes? Any help is much appreciated as I'm still learning this exciting language! :)

RE: [PHP] Class Help Extended

2004-05-06 Thread PHP Email List
nd being "included" if you will. :) I much appreciate the feed back. Thanks for your time. Man PHP ROCKS!! However I only feel that I've only begun to scratch the surface of it's power. I still haven't done file uploads and directory listings yet, soon Danielson.so

[PHP] Marketplace Framework

2007-05-20 Thread PHP Mailing List
Hi All, Is there any PHP's framework for developing a marketplace site ? Regards, Dino -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Marketplace Framework

2007-05-20 Thread PHP Mailing List
Hi All, Is there any PHP's framework for developing a marketplace site ? Regards, Dino -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] MySQL Connection in Session ?

2007-06-11 Thread PHP Mailing List
Can I maintain just one mysql connection resource to all my pages per user session. As far as I knows create connection is more expensive than executing queries ? Any reference how to make efficient for connection resources ? Thanks, Dino -- PHP General Mailing List (http://www.php.net/) To

[PHP] Persistent MySQL Connection

2007-06-11 Thread PHP Mailing List
Can I maintain just one mysql connection resource to all my pages per user session. As far as I knows create connection is more expensive than executing queries ? Any reference how to make efficient for connection resources ? Thanks, Dino -- PHP General Mailing List (http://www.php.net/) To

[PHP] Persistent MySQL Connection

2007-06-11 Thread PHP Mailing List
Can I maintain just one mysql connection resource to all my pages per user session. As far as I knows create connection is more expensive than executing queries ? Any reference how to make efficient for connection resources ? Thanks, Dino -- PHP General Mailing List (http://www.php.net/) To

[PHP] Persistent MySQL Connection

2007-06-13 Thread PHP Mailing List
Hi everyone, I currently running my php as cgi as it is more controllable in shared hosting, the drawback is I cannot use mysql persistent connection so mysql_pconnect() function is not an option. Is there any mysql connection pool product for php running as cgi ? Thanks, Dino -- PHP

[PHP] Google Talk Integration

2007-06-13 Thread Not�cias PHP
Hi, In the site http://www.imified.com/api/ it has a API that it makes the integration of the GTALK with any programming language. But I am not obtaining to make script php to send a message for my user in google talk. Somebody already used this api? Hermes Alves www.argohost.net -- PHP

[PHP] Multiple "if()" statements

2006-06-28 Thread Grae Wolfe - PHP
;IF()" statements that I am using, but I have an issue with my syntax somewhere because it isn't working the way I want. Any help would be great! if($row[1]="none") { print(""); print("$row[0] $row[2]"); print(""); } else if($row[1

[PHP] Re: Multiple "if()" statements

2006-06-28 Thread Grae Wolfe - PHP
Thank you all SO incredibly much!!! Now I just have to figure out how to get it to put the results into two columns instead of one, and this phase of this nightmarish project is over!! I am eternally grateful, and I am sure I will be back with more questions!! ""Grae Wolfe - PHP

RE: [PHP] hotel reservation system.

2006-09-30 Thread PHP Email List
006 7:23 AM To: Faisal Sahar Cc: php-general@lists.php.net Subject: Re: [PHP] hotel reservation system. Faisal Sahar wrote: > hi to everyone, > >i want to create a hotel reservation system. how can i keep track of dates . > suppose i have booked a room from 12/10/2006 till 14/10

[PHP] ECHO $variable

2006-10-07 Thread Ron Piggott (PHP)
In one of my scripts I have where $saved_message_title is 1 Peter 5:7 "Cast all your cares on Him for He cares about you" --- note the " When this is displayed on the screen $saved_message_title reads 1 Peter 5:7 I am assuming the " closes the value= How may I echo this to the screen and

[PHP] Uploading files / processing with a PHP script

2006-10-08 Thread Ron Piggott (PHP)
When I upload a file into an application I am writing with the HTML form command and then give the PHP command move_uploaded_file( $userfile , $destination_file_name); the owner of the file is 'www'. Is there any way I am able to automatically change the owner of the file to my

[PHP] Date verification

2006-10-09 Thread Ron Piggott (PHP)
Is there a PHP function which verifies a valid date has been entered (-MM-DD)? Ron

[PHP] Month in a numeric form

2006-10-15 Thread Ron Piggott (PHP)
Is there a way I am able to use the DATE command to convert January to 1, February to 2, etc.

[PHP] Date calculation

2006-10-15 Thread Ron Piggott (PHP)
I have one more date based question. I have a month field ( $month ) and a day field ( $day ) being submitted by a form. I have a third field to be used as a date reminder for the information which was submitted as part of the form. It is a reminder to complete a task for the date was which was

[PHP] strtotime

2006-10-24 Thread Ron Piggott (PHP)
I have used the strtotime command to calculate a week ago (among other things) with syntax like this: $one_week_ago = strtotime("-7 days"); $one_week_ago = date('Y-m-d', $one_week_ago); How would you use this command to figure out the last day of the month in two months from now --- Today is Oct

[PHP]

2006-10-25 Thread Ron Piggott (PHP)
generated through PHP code I already have a value the user submitted in a variable named $selected_day_of_month from being stored in a mySQL table Does anyone know how to do this in a few commands? I am wanting to simplify 1 } ELSE { 1 } if ( $selected_day_of_month == "2" ) } 2

[PHP] Form verification

2006-11-01 Thread Ron Piggott (PHP)
I am wondering if any of you know what it is called when letters come up for the user to key in for form entry verification. Ron

[PHP] imagejpeg

2006-11-04 Thread Ron Piggott (PHP)
Is there a way to specify a font when using imagejpeg ? Ron

[PHP] imageloadfont

2006-11-05 Thread Ron Piggott (PHP)
How do you make .gdf files for use with imageloadfont ? Ron

[PHP] image commands (again)

2006-11-05 Thread Ron Piggott (PHP)
created to have some HTML around it ... I would like to have some text above the image and following it. How do I do this in PHP? I would like something like Good morning {text image} Good night --- As soon as I give the Content-type: image/ the browser expects only the image to output

[PHP] Uploading large files

2006-05-13 Thread php @ net mines
Hi all is there a way to upload large files (e.g. 15mb) without changing the default settings in php.ini***? Preferably by using php, but if not is there another web tech (e.g. Java applets) that will allow me to do this? Thanks in advance Mario -- PHP General Mailing List (http

Re: [PHP] Uploading large files

2006-05-14 Thread php @ net mines
quot;Rory Browne" <[EMAIL PROTECTED]> To: "php @ net mines" <[EMAIL PROTECTED]> Cc: "PHP-General" Sent: Saturday, May 13, 2006 8:27 PM Subject: Re: [PHP] Uploading large files possibly by using CGI/php, and changing the relevent vaules, on the command line. Why d

[PHP] New install platform

2006-06-25 Thread Grae Wolfe - PHP
It has become evident that I need some form of local testing environment so that I can figure out what is wrong with one of my $sql statements. Can anyone tell me what the easiest platform is to set up a PHP/MySQL system? I have a PC and a Mac on OS X, and with the use of VirtualPC I have

RE: [PHP] How do you guys do this?

2004-01-30 Thread PHP Email List
name, tina.jpg, michele.jpg, but again, the same file name on the same second, what are the odds? <--anyone? :) -Original Message- From: Chris W. Parker [mailto:[EMAIL PROTECTED] Sent: Friday, January 30, 2004 12:23 PM To: Ryan A; [EMAIL PROTECTED] Subject: RE: [PHP] How do you guys

[PHP] Revised: RE: [PHP] Re: Can I do this?

2004-02-08 Thread PHP Email List
ne were to stumble upon your list.php script they would be able to see your php code." } I have tested this pulling it from the server without parsing the file, I only saw the html source with the include directory in it. Even if someone was to get ahold of that the only variable is a

RE: [PHP] Revised: RE: [PHP] Re: Can I do this?

2004-02-08 Thread PHP Email List
Ok a couple of questions. I have include files that someone else is including from there server and he is unable to view the source code that he is utilizing in an include script. Of course this is running Apache and Unix with PHP 4.3.4. SO my questions are. 1> Are you testing or referring

RE: [PHP] E-Commerce

2004-02-12 Thread PHP Email List
Jimmy jimmy jimmy... Now if your question is, Can PHP be the most versatile languge that one should use for creating the best online shop ever? Then yes. Can PHP interact with MySql and just about every other Database program to store all your wonderful merchandise, in a nice compact easy to

[PHP] Is it posible to embed scripts from other server?

2004-02-18 Thread The PHP Newbie
HI there! Hope someone can help me with this: Is it posible to run a PHP script from a different server than the one requesting the script.? I would like to know if u can do this with php, just like the Server Includes in CGI and if u have an example of how to do it. I have a script in

[PHP] $_POST not working with str_replace

2004-03-23 Thread PHP Email List
27;Content-Disposition: "Rtftest.rtf"'); $fp = fopen($filename, "r"); $output = fread($fp, filesize($filename)); $output = str_replace("<>",$name,$output); ... rest of output str_replace items echo $output; >>>end rtf.php Thanks in advanced Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] $_POST not working with str_replace

2004-03-23 Thread PHP Email List
PHP Email List wrote: > Ok here's my problem, I'm in the midst of creating a string replace to work > on a rtf file that is on the server, this fuctionallity works perfect with > "GET" but not "POST", I guess I don't understand why. [snip] > $name =

RE: [PHP] $_POST not working with str_replace

2004-03-23 Thread PHP Email List
or trying though, Anyone else have any ideas on this problem? Thanks! Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] $_POST not working with str_replace

2004-03-23 Thread PHP Email List
until you find what's causing the problem. There's no reason using $_GET > over $_POST should matter, since you're assigning it to a holding > variable, anyhow. What version of PHP are you using? Alright I'll try it from start, but again, it doesn't make any sense when

RE: [PHP] $_POST not working with str_replace

2004-03-24 Thread PHP Email List
serving a cached version of the page > that has the form method set to GET instead of POST. > Just throwing out some other ideas since you said you've tried most > everything else. Thanks Brent for the ideas with the source, I'll try that, and I'll test that Request idea too. :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] $_POST not working with str_replace

2004-03-24 Thread PHP Email List
ble from within the same script! Here's the code (I added ---> to show where the variable is) rtf1.php $na == "Me"; $filename = "fname.rtf"; header('Content-Type: application/msword'); header('Content-Disposition: inline, "rtftest.rtf"

RE: [PHP] $_POST not working with str_replace

2004-03-24 Thread PHP Email List
t I am working on, the .rtf file that is also on the server, does that have to have special permissions with POST as opposed to GET? (ie, read, write and execute?) And ? #2 are there any settings within PHP that would limit my ability to visually display the contents of a POST variable on a .rtf document a

RE: [PHP] Methods for creating HTML with PHP

2004-03-26 Thread PHP Email List
> -Original Message- > From: Jason Giangrande [mailto:[EMAIL PROTECTED] > I'm looking for an easy way to write all my HTML using PHP. Jason, Sorry this is late and not even sure if you found your answer to this question that you ask, however I think in the end it's go

RE: [PHP] Wrong IP address

2004-03-29 Thread PHP Email List
> From: ascll [mailto:[EMAIL PROTECTED] > Subject: [PHP] Wrong IP address > > to get the web IP address for my machine once my PC is connected to > Internet.. Are you on a highspeed connection or dialup. Dial up connections tend to give a different connection with every connecti

RE: [PHP] smarty

2004-04-08 Thread PHP Email List
> From: Antonio Montana [mailto:[EMAIL PROTECTED] > Subject: Re: [PHP] smarty > "Who the fuck you tink you're talkin' to, huh! Tink? DRINKS ARE ON THE HOUSE!! LOL > You dont tell me what to do, Sosa. Sammy Sosa? > You want a war, you got it. Untraceable IP

Re: [PHP] Dynamic Class Name Assignments

2004-11-24 Thread PHP Mailingliste Tarta
MAIL PROTECTED] > Betreff: [PHP] Dynamic Class Name Assignments > > Hi All, im new to classes in PHP. Im trying to create > several instances of a very basic class but i want > each name to be based on number values in an array and > im not sure if it is allowed and if so how to do

[PHP] mysql_connect() error

2005-09-03 Thread php general help
the mysql_connect() function thats giving me the error though cant seem to get it sorted. below is the versions im using Apache version : Apache/1.3.33 (Win32) PHP version : 5.0.4 MySQL version : 4.1.10a-nt - extension : mysqli all the above come in a bundle package called ( wampserver ) have also

[PHP] mysql_connect() error

2005-09-03 Thread php general help
mysql_connect() function thats giving me the error though cant seem to get it sorted. below is the versions im using Apache version : Apache/1.3.33 (Win32) PHP version : 5.0.4 MySQL version : 4.1.10a-nt - extension : mysqli all the above come in a bundle package called ( wampserver ) have also

[PHP] Entering foreign characters into MySQL

2005-09-13 Thread php @ net mines
xxx;. The problem is that I still get () instead of the &#xxx;&#xxx;&#xxx;&#xxx;&#xxx; word. Can anyone help Thanks Mario -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] replace

2005-09-19 Thread php @ net mines
Hi all if I have an array of chars to be replaced array(1,2,3,4,5); and an arry of chars to replace with array(a,b,c,d,e) what function do I need to replace all chars from one arry to the other that are found in the var $contents Thanks M -- PHP General Mailing List (http://www.php.net

[PHP] BOOKING SYSTEM

2005-09-20 Thread php @ net mines
n-SQL do I have to run to check whether there is availability? (in this example there should be availability between 27 and 29 but not between 25 and 27). Is this way of structuring the easiest and more efficient? Thank you Mario -- PHP General Mailing List (http://www.php.net/) To unsubs

Re: [PHP] BOOKING SYSTEM

2005-09-21 Thread php @ net mines
eas3"]); $thead3 = stripslashes($thes["thead3"]); $theat3 = stripslashes($thes["theat3"]); $theaq3 = stripslashes($thes["theaq3"]); } } if (($theas - $theas3<=0) || ($thead - $thead3<=0) || ($theat - $theat3<=0) || ($theaq - $theaq3<=0)) { $z++; } $

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