php-general Digest 7 May 2004 13:30:10 - Issue 2749
Topics (messages 185579 through 185614):
Returning an object
185579 by: Aidan Lister
185581 by: Petr U.
185583 by: Curt Zirzow
185585 by: John W. Holmes
185603 by: Jay Blanchard
Re: strip comments
php-general Digest 8 May 2004 15:50:06 - Issue 2751
Topics (messages 185700 through 185709):
Re: Graphical calendar
185700 by: David T-G
185703 by: Manuel Lemos
185709 by: Todd Cary
Re: page_title
185701 by: John W. Holmes
185706 by: Kim Steinhaug
php-general Digest 9 May 2004 03:57:45 - Issue 2752
Topics (messages 185710 through 185726):
Problems with very special characters
185710 by: Wouter van Vliet
185720 by: Aidan Lister
Gd library not found
185711 by: Phpu
185712 by: Ray Hunter
Re: page_title
php-general Digest 29 Apr 2004 20:35:55 - Issue 2734
Topics (messages 184930 through 184970):
Re: global vars inside includes inside functions?
184930 by: De Greef Sébastien
184953 by: Red Wingate
184962 by: Tom Rogers
184963 by: Red Wingate
web page
php-general Digest 1 May 2004 10:14:04 - Issue 2737
Topics (messages 185076 through 185090):
Re: https & sessions failing to persist
185076 by: Michael R. Wayne
185077 by: Curt Zirzow
initializing HTML form using PHP
185078 by: Denis Kertz
185079 by: Da
php-general Digest 1 May 2004 22:23:15 - Issue 2738
Topics (messages 185091 through 185110):
reversing an IF statement
185091 by: Kim Steinhaug
185092 by: Torsten Roehr
185093 by: Anguz
185101 by: Chris
Re: Separating spaces from the rest
185094 by
php-general Digest 2 May 2004 10:48:04 - Issue 2739
Topics (messages 185111 through 185135):
Sorting text with multibyte characters
185111 by: Michal Migurski
185114 by: Red Wingate
185117 by: Michal Migurski
- Delete records in an Access DB
185112 by
php-general Digest 2 May 2004 22:54:17 - Issue 2740
Topics (messages 185136 through 185158):
Re: Progress Bar
185136 by: Burhan Khalid
http username
185137 by: Harry.de
185138 by: Matt
185139 by: rich
Re: String Question
185140 by: John W. Holmes
php-general Digest 5 May 2004 12:35:36 - Issue 2745
Topics (messages 185382 through 185416):
Re: WHERE clause...getting closer
185382 by: Richard Davey
185384 by: Curt Zirzow
185393 by: Ray Hunter
185401 by: Tom
185413 by: msa
Re: SCP a file from my
php-general Digest 6 May 2004 13:06:59 - Issue 2747
Topics (messages 185491 through 185521):
Class Help
185491 by: PHP Email List
185494 by: Curt Zirzow
Re: remove soap header
185492 by: Chhai T
Re: HTTP_REFERER ... ?
185493 by: David Robley
185509
php-general Digest 15 May 2004 10:34:44 - Issue 2764
Topics (messages 186263 through 186287):
Looking For Easy To Use Shopping Cart
186263 by: Ryan Schefke
186266 by: Justin Patrin
186268 by: Dan McCullough
186270 by: Ryan Schefke
186271 by: Justin
php-general Digest 16 May 2004 11:09:12 - Issue 2766
Topics (messages 186336 through 186346):
Re: PHP and qmail
186336 by: Manuel Lemos
186339 by: electroteque
Release Announcement: Hardened-PHP 0.1.1
186337 by: Stefan Esser
186338 by: electroteque
Re
php-general Digest 17 May 2004 00:28:06 - Issue 2767
Topics (messages 186347 through 186368):
Re: PEAR::DB is great but is so SLOW !
186347 by: Aidan Lister
186349 by: Martin Hjort Eriksen
186350 by: Tim Van Wassenhove
186355 by: Curt Zirzow
Re: Template
php-general Digest 17 May 2004 13:07:39 - Issue 2768
Topics (messages 186369 through 186403):
Re: while inside a while or join or...
186369 by: Rachel Rodriguez
186370 by: Curt Zirzow
186371 by: John W. Holmes
Forums
186372 by: Ryan A
186373 by: John
lhost/my_authentication_script.php
that's all what comes to my mind,
regards,
m.
Michael T. Peterson wrote:
Here is some additional info:
My other PHP scripts execute just fine, including the php script init.php
which uses header(...) to dispatch to the member_login.htm page. Recall that
the prob
tr_replace(array('é', 'à'), array('e', 'a'), $a);
41> $b = str_replace(array('é', 'à'), array('e', 'a'), $b);
42> return strcasecmp($a,$b);'));
Can you have two arrays there? http://ca2.php.net/manual/en/function.str-replace.php
All the brackets are in the right place. Hmmm ...?
Thanks,
John
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
;
usort($authors, create_function('$a,$b','
$a = str_replace($first, $second, $a);
$b = str_replace($first, $second, $b);
return strcasecmp($a,$b);'));
foreach (array_count_values ($authors) as $author=>$count)
{
if((strtolower(substr($author, 0, 1)) == $ausenquiry))
{
echo "";
echo "".$author." [<--Search Entire
Database]";
echo "(".$count." ";
if($count > 1)
{echo "records found/trouvés)";}
else{echo "record found/trouvé)";}
echo"\n";
echo " ";
echo "";
$temp = "";
foreach ($author_list[$author] as $ausid)
{
$temp .= "".$ausid.", ";
}
$temp = substr("$temp", 0, -2);
echo "$temp";
echo " ";
echo "\n";
}
}
mysql_close($myconnection);
##
echo "
\n";
?>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
é', 'À', 'É');
$second = array('a', 'e', 'A', 'É');
usort($authors, create_function('$a,$b','
$a = str_replace($first, $second, $a);
$b = str_replace($first, $second, $b);
return strcasecmp($a,$b);'));
foreach (array_count_values ($authors) as $author=>$count)
{
if((strtolower(substr($author, 0, 1)) == $ausenquiry))
{
echo "";
echo "".$author." [<--Search Entire
Database]";
echo "(".$count." ";
if($count > 1)
{echo "records found/trouvés)";}
else{echo "record found/trouvé)";}
echo"\n";
echo " ";
echo "";
$temp = "";
foreach ($author_list[$author] as $ausid)
{
$temp .= "".$ausid.", ";
}
$temp = substr("$temp", 0, -2);
echo "$temp";
echo " ";
echo "\n";
}
}
mysql_close($myconnection);
##
echo "
\n";
?>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
hello!
use output buffering...
regards,
m.
Maris wrote:
Hi!
Let's say my index.php consists of the following:
PHP says Hello World"; ?>
HTML says Hello World
..some other HMTL output..
My question is:
how can I make the whole index.php generated output put in one PHP variabl
ay, July 14, 2004 12:56 AM
To: PHP
Subject: [PHP] PHPEdit almost as good as s*x (with a women in bikini)
Sorry Guys,
I know that this is off-topic. In one of the sites,I saw the subject AD
{PHPEdit almost as good as s*x (with a women in bikini)}. This is really
irritating. What sex has to do with P
le and how long they view each page. I can create the
appropriate fields in MySQL and can use PHP to do the appropriate
calcualtions. What I don't know is how I communicate this information to
the server. I can use POST or GET statements to pass info with page turns
but what do I do if the vis
ewhat off topic, but I just need a starting place to
do the research and thought someone here might be able to help. I am
developing an application in which I need to time how long a visitor
remains within a module and how long they view each page. I can create the
appropriate fields in MySQL and ca
ut I hope, that somewhat like this was
there,... check it :)
Regards,
m.
abrea wrote:
Dear list,
I am trying to install PHP 4.3.8 as a module of Apache 2.0.50 on a
Windows 98 computer.
Apache alone runs ok. After I installed PHP with the installer package, I
added the following line at the end of the Ap
d it could result in your problem...
m.
Scott Fletcher wrote:
I have a file that was 25 KB and I use the unlink() to remove the file.
When I rechecked it, I found that the file is still there but it's filesize
is 0 KB. Is unlink() suppose to remove the file or what??
FletchSOD
--
PHP Gener
dollop absolution monogamy gallop jog
heuristic stifle cove injudicious stab togs equitable averse
concord brazzaville punish deed detroit
the 6.x.x series). Anyway -- the clients decided
they wanted me to do some work on the image quality, so I finally
decided to move up to ImageMagick v.6.3.4.
Right now, I call ImageMagick from a "exec" call in PHP. When I first
wrote the application, it was the quickest and easiest wa
Plus,
look in the examples section.
Eric Holt (PHP List) wrote:
Hello everyone. This is my first post to the list, so bare with me :)
I have written an application for a client that is used in the Event
Photography business. It handles taking photographs, categorizing
them, making thumbnai
?
:W
-Original Message-
From: Rahul Sitaram Johari [mailto:[EMAIL PROTECTED]
Sent: Friday, August 03, 2007 12:47 PM
To: Austin Denyer; PHP
Subject: Re: [PHP] OT- why is network solutions more than godaddy?
Interesting read - although the whole thing is trumpeted upon their policy
"W
php-general Digest 31 Jan 2004 20:07:11 - Issue 2563
Topics (messages 176448 through 176468):
Re: Turck MMcache - still continuing or dead?
176448 by: Binay
176449 by: Jason Wong
176452 by: Adrian Teasdale
176453 by: Raditha Dissanayake
176455 by
php-general Digest 1 Feb 2004 13:10:08 - Issue 2564
Topics (messages 176469 through 176500):
Perl script using Inline-octave doesn't run.
176469 by: Paulo Lagrotta
Re: formated text after Submit in MySQL/PHP
176470 by: Burhan Khalid
176478 by: Matt H
php-general Digest 2 Feb 2004 01:12:52 - Issue 2565
Topics (messages 176501 through 176538):
HTTP request parameters do not populate variables
176501 by: Slava Zinkovski
176502 by: DvDmanDT
176503 by: BAO RuiXian
176505 by: Slava Zinkovski
176506 by
php-general Digest 2 Feb 2004 13:50:31 - Issue 2566
Topics (messages 176539 through 176570):
Re: php version difference - local installation very strict
176539 by: DvDmanDT
176543 by: Jason Wong
Re: Nested PHP
176540 by: Russell Shaw
176567 by: Jon Bennett
php-general Digest 3 Feb 2004 14:16:27 - Issue 2568
Topics (messages 176645 through 176677):
Re: auto forms from mysql database
176645 by: Justin Patrin
Question about dates
176646 by: Renan G. Galang
176647 by: John Nichel
176650 by: John W. Holmes
Re
php-general Digest 7 Feb 2004 16:35:47 - Issue 2576
Topics (messages 177077 through 177096):
Re: Cannot send mail after upgrading to OS X v10.3
177077 by: Jason Wong
177078 by: John Nichel
fopen() Problems
177079 by: rabbit.cold-chaos.net
177080 by: Jason
php-general Digest 8 Feb 2004 04:47:46 - Issue 2577
Topics (messages 177097 through 177120):
Re: Need a way to automate user logout
177097 by: Lowell Allen
PHP5 Beta 3
177098 by: Safran von Twesla
[ERR] [PHP] PHP5 Beta 3
177099 by: postmaster.hanmir.com
PEAR DB
php-general Digest 8 Feb 2004 16:58:49 - Issue 2578
Topics (messages 177121 through 177146):
Re: how to conver a string to float
177121 by: Michal Migurski
177123 by: Adam Bregenzer
Re: refresh page (might be 0t)
177122 by: Adam Bregenzer
Re: Use a Server or Client
php-general Digest 9 Feb 2004 05:32:10 - Issue 2579
Topics (messages 177147 through 177182):
Re: Question About Date Function in PHP/MySQL
177147 by: John W. Holmes
177153 by: Freedomware
Re: .html or.php extension
177148 by: John Nichel
177149 by: Jason
php-general Digest 9 Feb 2004 17:32:27 - Issue 2580
Topics (messages 177183 through 177220):
Re: julian date
177183 by: Adam Bregenzer
Minor Heads Up
177184 by: Gerard Samuel
Re: read-only variables
177185 by: Vivian Steller
177193 by: Alex Farran
file
php-general Digest 10 Feb 2004 05:38:19 - Issue 2581
Topics (messages 177221 through 177251):
OT -> Pocket PC/PALM Application making/syncing?
177221 by: Robert Sossomon
Re: triple DES encryption
177222 by: "Miguel J. Jiménez"
177223 by: A
php-general Digest 12 Feb 2004 06:20:40 - Issue 2585
Topics (messages 177436 through 177477):
Re: [Q]PHP not taking input values from forms
177436 by: Richard Davey
177437 by: John Nichel
177440 by: Dan Aloma
177441 by: Richard Davey
177442 by: Dan
php-general Digest 13 Feb 2004 07:08:21 - Issue 2587
Topics (messages 177537 through 177572):
PHP with FTP installation
177537 by: rodner.edigitalweb.com
177564 by: Jason Wong
Re: Using date() with the function fileatime() doesn't return accurate timestamp...
1
php-general Digest 14 Feb 2004 19:40:49 - Issue 2590
Topics (messages 177686 through 177714):
Syntax
177686 by: PETCOL
177690 by: John Nichel
Re: Constant PHP_OS and Mac Server
177687 by: - Edwin -
177688 by: - Edwin -
177704 by: Gerard Samuel
Re
php-general Digest 15 Feb 2004 10:11:54 - Issue 2591
Topics (messages 177715 through 177725):
Re: phps and iis
177715 by: Anders Gjermshus
177722 by: John W. Holmes
177725 by: Marek Kilimajer
include result from script in midle of other script
177716 by
php-general Digest 15 Feb 2004 22:17:39 - Issue 2592
Topics (messages 177726 through 177751):
Need help with output from form to .txt file
177726 by: Kristers hotmail
177727 by: Thorben
177728 by: Thorben
177729 by: Adam Bregenzer
Re: Question about php
php-general Digest 16 Feb 2004 10:59:52 - Issue 2593
Topics (messages 177752 through 177784):
Re: Simple while loop skipping first row of array
177752 by: André Cerqueira
Re: File Injection Bug
177753 by: André Cerqueira
PHP and Word...
177754 by: Russell P Jones
php-general Digest 17 Feb 2004 11:39:20 - Issue 2595
Topics (messages 177886 through 177923):
Ora_Parse failed
177886 by: Matt Hillebrand
177888 by: Matt Hillebrand
Re: How many days between two dates
177887 by: Marek Kilimajer
Steps to installin PHP on apache 2
php-general Digest 19 Feb 2004 12:16:25 - Issue 2599
Topics (messages 178194 through 178236):
Re: checking users have the latest version of a file
178194 by: Chris W. Parker
178196 by: daniel.electroteque.org
178197 by: daniel.electroteque.org
178198 by
php-general Digest 20 Feb 2004 12:27:31 - Issue 2601
Topics (messages 178304 through 178335):
Security Issue?
178304 by: Ed Lazor
Re: date
178305 by: Tom Rogers
178321 by: Lucian Cozma
178333 by: Richard Davey
Re: PHP & PDFs...
178306 by:
php-general Digest 21 Feb 2004 13:41:53 - Issue 2603
Topics (messages 178419 through 178441):
CMS and images, how?
178419 by: Toby Irmer
Re: Self Submitting Form
178420 by: Toby Irmer
178432 by: Sam Masiello
178433 by: Tom Rogers
178434 by: Toby
php-general Digest 22 Feb 2004 02:47:25 - Issue 2604
Topics (messages 178442 through 178467):
Help with SQLite and ADOdb
178442 by: user.domain.invalid
How can I use a value from a Html's Form
178443 by: qm.fuwanjia.com.cn
178446 by: John Nichel
1784
php-general Digest 22 Feb 2004 16:48:17 - Issue 2605
Topics (messages 178468 through 178492):
Objects and Arrays - need help?
178468 by: John Romero
PHP Error
178469 by: Tim Trimble
178471 by: John Nichel
running php through cron
178470 by: Pablo Gosse
php-general Digest 23 Feb 2004 05:09:19 - Issue 2606
Topics (messages 178493 through 178510):
[SQLite] safe_mode_gid or safe_mode_exec_dir
178493 by: user.domain.invalid
Re: Safe Mode
178494 by: Jason Wong
178495 by: user.domain.invalid
type casting problem
php-general Digest 23 Feb 2004 17:11:59 - Issue 2607
Topics (messages 178511 through 178540):
Re: PHP or MSIE Problem? -- SOLVED
178511 by: Beau Hartshorne
Re: using xp home
178512 by: Jason Merrique
Re: ftp software
178513 by: Jason Merrique
SQLite: getting field
php-general Digest 27 Feb 2004 09:00:23 - Issue 2614
Topics (messages 178959 through 178990):
Re: [PHP-DEV] PHP5: Class behavior: method overloading
178959 by: Walter A. Boring IV
Re: Send Attachments via mail using form
178960 by: Manuel Lemos
178966 by: Justin
php-general Digest 27 Feb 2004 21:42:41 - Issue 2615
Topics (messages 178991 through 179026):
Re: Passing the value of a variable from PHP to JavaScript.
178991 by: Gareth Williams
178992 by: Prabu Subroto
Re: PHP5 simpleXML bug or am i just being silly :)
178993 by
php-general Digest 28 Feb 2004 09:47:38 - Issue 2616
Topics (messages 179027 through 179058):
arrays and sessions
179027 by: Kermit Short
179030 by: Chris W. Parker
179032 by: Kermit Short
179037 by: Chris W. Parker
179040 by: Justin Patrin
Re: List
php-general Digest 28 Feb 2004 21:58:44 - Issue 2617
Topics (messages 179059 through 179093):
Re: Text cleaning?
179059 by: Karl Timmermann
179063 by: Brian V Bonini
179066 by: Jason Wong
PHP to UML ?
179060 by: Rick \[Kitty5\]
- Receive mail with PHP
php-general Digest 29 Feb 2004 10:50:49 - Issue 2618
Topics (messages 179094 through 179127):
Re: creating file links on linux (ln) with php
179094 by: Jeremy
Re: mkdir and rmdir possible but not readdir and opendir???
179095 by: raisinlove
179097 by: raisinlove
php-general Digest 29 Feb 2004 22:55:22 - Issue 2619
Topics (messages 179128 through 179138):
php newsgroup portal?
179128 by: Zhang Weiwu
179129 by: Shane Nelson
Re: mkdir and rmdir possible but not readdir and opendir???
179130 by: raisinlove
Re: $sring = ARRAY
php-general Digest 1 Mar 2004 11:22:50 - Issue 2620
Topics (messages 179139 through 179157):
Opps
179139 by: Karl Timmermann
Get MySQL table field names
179140 by: Matt Palermo
179141 by: Michael Kunze
179149 by: Five
179151 by: Jason Wong
php-general Digest 1 Mar 2004 23:41:36 - Issue 2621
Topics (messages 179158 through 179194):
Re: values from string query
179158 by: Angelo Zanetti
179161 by: Ian Firla
Re: header(Location: question
179159 by: Chris Sandy
Re: How to get the auto-incremented value
php-general Digest 2 Mar 2004 11:41:41 - Issue 2622
Topics (messages 179195 through 179225):
IE6 with latest hotfixes breaks forms ...
179195 by: Marc G. Fournier
179196 by: Chris Shiflett
179198 by: Marc G. Fournier
179199 by: Chris Shiflett
179201
php-general Digest 3 Mar 2004 12:30:59 - Issue 2624
Topics (messages 179320 through 179336):
Re: resubmitting $POST data to another script
179320 by: Chris Shiflett
179321 by: Marek Kilimajer
179322 by: Chris Shiflett
179323 by: Leif Gregory
179324 by
php-general Digest 6 Mar 2004 14:08:01 - Issue 2630
Topics (messages 179621 through 179646):
Re: UK Bank Holidays 2
179621 by: Tom Rogers
179625 by: Ben Ramsey
179627 by: Ryan A
179631 by: Shaun
179633 by: Jason Wong
179634 by: Shaun
php-general Digest 7 Mar 2004 02:14:35 - Issue 2631
Topics (messages 179647 through 179675):
Re: How to write this correctly?
179647 by: Brian V Bonini
179658 by: joel boonstra
179665 by: Brian V Bonini
179675 by: Tom Rogers
Re: UK Bank Holidays 2
php-general Digest 7 Mar 2004 14:15:48 - Issue 2632
Topics (messages 179676 through 179696):
Need Help in shoppin cart
179676 by: New Session
179677 by: Ryan A
179681 by: John Nichel
Re: UK Bank Holidays 2
179678 by: Raditha Dissanayake
Re: PHP and Apache
php-general Digest 8 Mar 2004 02:42:57 - Issue 2633
Topics (messages 179697 through 179717):
Re: remote stop/start the applications
179697 by: Raditha Dissanayake
179698 by: CurlyBraces Technologies \( Pvt \) Ltd
Re: Let's start a php-advanced list!
179699 by:
php-general Digest 8 Mar 2004 15:03:41 - Issue 2634
Topics (messages 179718 through 179749):
Re: Do not want Undefined variable message
179718 by: Michal Migurski
Re: Job listings
179719 by: Anders Hellström
Re: Programming
179720 by: Phil Dowson
179722 by
php-general Digest 13 Mar 2004 06:24:31 - Issue 2643
Topics (messages 180273 through 180315):
An extension to CREATE zips??
180273 by: Brian J. Celenza
Re: XSS Vulnerabilities and strip_tags
180274 by: Andre Cerqueira
Re: STrange Problem
180275 by: PHP
php-general Digest 13 Mar 2004 18:24:59 - Issue 2644
Topics (messages 180316 through 180350):
Re: Apache Config: php_value "auto_prepend_file" & "auto_append_file"
180316 by: electroteque
180320 by: Rasmus Lerdorf
Re: Dumb
180317 by: Burhan
php-general Digest 14 Mar 2004 07:06:00 - Issue 2645
Topics (messages 180351 through 180378):
Re: MySQL Writes Exception for PHP in License
180351 by: Red Wingate
180354 by: Rasmus Lerdorf
Re: Create table .. script[via LSMTP - see www.lsoft.com]
180352 by: Firman
php-general Digest 14 Mar 2004 19:31:17 - Issue 2646
Topics (messages 180379 through 180395):
Re: gd installation problem
180379 by: Firman Wandayandi
Re: how to convert array into integer
180380 by: Firman Wandayandi
180381 by: Five
180383 by: Raditha
php-general Digest 15 Mar 2004 08:48:16 - Issue 2647
Topics (messages 180396 through 180415):
Re: Mail
180396 by: Jason Davidson
180397 by: Will
User denided function
180398 by: nblanco
XML architecture question
180399 by: Jabro
180402 by: Ray
php-general Digest 16 Mar 2004 10:00:10 - Issue 2649
Topics (messages 180493 through 180528):
Re: PHP Certification
180493 by: Rasmus Lerdorf
180497 by: Ryan A
180503 by: Richard Davey
Re: Regex help (SOLVED)
180494 by: Michal Migurski
Pear Package
php-general Digest 19 Mar 2004 11:26:30 - Issue 2655
Topics (messages 180926 through 180950):
Re: E-mail account disabling warning.
180926 by: Jeffrey Shaw
180930 by: Chris W. Parker
180931 by: Ryan A
Re: Retain form values...
180927 by: Chris W. Parker
php-general Digest 20 Mar 2004 12:43:29 - Issue 2657
Topics (messages 181007 through 181019):
Re: What does it take to give a good technical presentation?
181007 by: John Coggeshall
Blank Page instead of Errors
181008 by: Jonathan Duncan
181009 by: John W. Holmes
php-general Digest 21 Mar 2004 00:45:35 - Issue 2658
Topics (messages 181020 through 181059):
Re: too much trimming
181020 by: Gerben
181021 by: Gerben
Image size ??
181022 by: Tom Wuyts
181023 by: Marek Kilimajer
Re: [PEAR] Auth
181024 by: Firman
php-general Digest 21 Mar 2004 13:09:45 - Issue 2659
Topics (messages 181060 through 181077):
Re: Inconv in PHP5 compile
181060 by: PHPDiscuss - PHP Newsgroups and mailing lists
php and CSS level 2
181061 by: Andy B
181062 by: Aidan Lister
181068 by: Ben
php-general Digest 22 Mar 2004 01:22:55 - Issue 2660
Topics (messages 181078 through 181108):
Re: Timing a MySQL response
181078 by: John W. Holmes
Re: Upload file field not working as a form element
181079 by: Lowell Allen
181080 by: Vernon
181081 by: Jason
php-general Digest 22 Mar 2004 13:23:02 - Issue 2661
Topics (messages 181109 through 181135):
Re: Zend Optimiser -- wide spread??
181109 by: Filip de Waard
181118 by: Kim Steinhaug
Re: SQL Injection check (mysql)
181110 by: Chris Shiflett
18 by
php-general Digest 23 Mar 2004 13:33:36 - Issue 2663
Topics (messages 181215 through 181251):
Re: Passing by conditional IF statement...why?
181215 by: Ligaya Turmelle
181217 by: Daniel Guerrier
181219 by: Ryan A
181221 by: John W. Holmes
181224 by
php-general Digest 26 Mar 2004 17:09:53 - Issue 2669
Topics (messages 181542 through 181565):
Re: Methods for creating HTML with PHP
181542 by: electroteque
Imap functions (imap_fetchstructure)
181543 by: Daryl Meese
Re: an if statement
181544 by: David Robley
Re
php-general Digest 27 Mar 2004 17:38:21 - Issue 2671
Topics (messages 181605 through 181616):
REsource Identifier( PHP_MYSQL)
181605 by: Gimic
181606 by: David Robley
181607 by: Burhan Khalid
181609 by: Gimic
181610 by: Burhan Khalid
Re: simple, but
php-general Digest 28 Mar 2004 09:29:14 - Issue 2672
Topics (messages 181617 through 181625):
Convert string and char in unicode format
181617 by: edwardspl.ita.org.mo
slow script
181618 by: Luis Gustavo Faccioni Barcellos
181619 by: electroteque
181620 by
php-general Digest 28 Mar 2004 22:22:13 - Issue 2673
Topics (messages 181626 through 181638):
Error: `phpize' failed?
181626 by: Johannes Tyra
Re: slow script
181627 by: Marek Kilimajer
PHP 4.2.3 || Can't unset $_SESSION!
181628 by: CF High
php-general Digest 29 Mar 2004 12:07:16 - Issue 2674
Topics (messages 181639 through 181649):
Accessing HTTP Content
181639 by: Quentin Bennett
181648 by: Burhan Khalid
How to send SMS
181640 by: saepudin
181642 by: Jake McHenry
181643 by: Evan
php-general Digest 3 Apr 2004 16:15:45 - Issue 2684
Topics (messages 182235 through 182254):
Re: Global $_FILEs
182235 by: Jason Wong
Re: Problem sending with mail()
182236 by: Jason Wong
Re: php email functionality
182237 by: Jason Wong
182242 by: Burhan
php-general Digest 4 Apr 2004 08:26:36 - Issue 2685
Topics (messages 182255 through 182271):
Re: passing variables
182255 by: Larry E. Ullman
Message ("Your message dated Sat, 3 Apr 2004 19:18:13 +0200...")
182256 by: L-Soft list server at America Online, Inc. (1.
php-general Digest 4 Apr 2004 21:11:59 - Issue 2686
Topics (messages 182272 through 182299):
Re: how to reset PHP_AUTH vars
182272 by: Burhan Khalid
182276 by: Nitin Mehta
182278 by: Martin Oettinger
Intermittent problem with Session Variable and IE6
182273
php-general Digest 5 Apr 2004 09:24:06 - Issue 2687
Topics (messages 182300 through 182337):
\n is not working!
182300 by: Labunski
182302 by: Robert Cummings
182303 by: Monty
182306 by: DvDmanDT
182310 by: Chris Shiflett
$HTTP_SESSION_VARS still
php-general Digest 29 Nov 2004 08:35:51 - Issue 3140
Topics (messages 203024 through 203053):
Re: Weird sessions problem
203024 by: Jason Wong
203031 by: steve
203032 by: Andre Dubuc
203049 by: Jason Wong
Re: Mass MySQL INSERT
203025 by: Jason Wong
php-general Digest 29 Nov 2004 20:38:01 - Issue 3141
Topics (messages 203054 through 203083):
Re: Weird sessions problem
203054 by: steve
Re: Problem with self join
203055 by: Raditha Dissanayake
203057 by: Robin Vickery
203060 by: Raditha Dissanayake
Re
php-general Digest 3 Dec 2004 10:37:02 - Issue 3148
Topics (messages 203393 through 203411):
Re: $this - >
203393 by: Matthew Weier O'Phinney
203408 by: Klaus Reimer
Strange character conversion when converting XML by XSLT in PHP
203394 by: Age Bosma
Hello,
I'm working on a downbload script which serves M3U
files (Winamp playlist files) through a PHP file
like this :
somepath/download.m3u.php?id=2
Then in the PHP script I generate the M3U file, and
serve up the headers I want. Swell so far, but a
little problem appears.
The download
I solved the problem after a while, seems it had been
reacently debated in the bug pages within php, to remove
headers which are added by the session_start(); you can
add the following :
ini_set('session.use_cookies', false);
session_cache_limiter('');
Kind re
e
so that the user infact can spend more time on the same
webpage without having to do some movement, :D
regards,
Kim Steinhaug
- - - - - - -
www.steinhaug.com
- Original Message -
From: "Bret Walker" <[EMAIL PROTECTED]>
To: "PHP-Users"
Cc: "Ivan Meye
- Original Message -
From: "Evert | Rooftop" <[EMAIL PROTECTED]>
To: "PHP-Users"
Sent: Monday, August 22, 2005 9:30 PM
Subject: [PHP] Files passing through
> Hi People,
>
> I want to use a PHP script to pass through a file to the browser [ right
&g
Tuesday, August 23, 2005 9:28 AM
Subject: Re: [PHP] Looking for CMS advice
> On Mon, August 22, 2005 3:48 am, Erik Gyepes wrote:
> > Zachary Kessin wrote:
> >
> >> I am about to start on a project that seems like it would be right
> >> for
> >> a CMS system
php-general Digest 27 Jan 2001 04:41:46 - Issue 478
Topics (messages 36740 through 36952):
Invoke PHP script from onLoad handler?
36740 by: Chuck Mayo
36924 by: Richard Lynch
max size of array
36741 by: Giancarlo
36742 by: Giancarlo
URGENT:Passing input
php-general Digest 27 Jan 2001 16:47:21 - Issue 479
Topics (messages 36953 through 36990):
Indexing Remote Directory
36953 by: Kif
Re: Where is my contrab file located?
36954 by: Richard Lynch
36976 by: Brian V Bonini
Re: mail problems in windows2000
36955
2001 - 2100 of 2217 matches
Mail list logo