Re: [PHP] Routing downloads through PHP - Thanks!

2006-02-15 Thread J_K9
Thanks everyone, especially Barry for that great script which I've 
tested on a home server and _does_ work...


So, I'm going to wait for my external hosting company to get back to me 
and alter the files there so that it'll work on my website.


Thanks again! ;-)


J_K9

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Routing downloads through PHP - Thanks!

2006-02-15 Thread R. Van Tassel
To develop locally try using the xampp package at www.apachefriends.org,
really easy to set up.

Thanks,
-Roy

http://www.myspace.com/GhostOrgy
http://www.myspace.com/SuitOfLights
Please add these artists as your friend on MySpace

-Original Message-
From: J_K9 [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 15, 2006 6:39 PM
To: php-general@lists.php.net
Subject: Re: [PHP] Routing downloads through PHP - Thanks!

Thanks everyone, especially Barry for that great script which I've 
tested on a home server and _does_ work...

So, I'm going to wait for my external hosting company to get back to me 
and alter the files there so that it'll work on my website.

Thanks again! ;-)


J_K9

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] thanks for the help

2005-09-10 Thread matt VanDeWalle

hello,
I just wanted to say thank you to the person who basically rewrote the 
function i seemed to have problems with and it actually now works.

thanks again
matt

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Thanks but problem again! Re: [PHP] PHP script problem (with MySQL)

2005-04-20 Thread Petar Nedyalkov
On Wednesday 20 April 2005 06:07, Sugimoto wrote:
(B Thank you, Richard,
(B
(B I simply change this part
(B (select * from openart_table) into
(B (select substring(loc1, 1, 3) as THREE_LETTER_CODE, * from openart_table)
(B but Ive got this error, whats wrong with it?
(B
(B Warning: mysql_num_rows(): supplied argument is not a valid MySQL result
(B resource in c:\apache..\openart\test\openart_search.php on line 98
(B Records Found
(B
(BWhy don't you try the query in the mysql console? You'll see what it returns 
(Band debug the error easily.
(B
(B
(B Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result
(B resource in c:\apache\openart\test\openart_search.php on line 100
(B
(B Cheers
(B
(B-- 
(B
(BCyberly yours,
(BPetar Nedyalkov
(BDevoted Orbitel Fan :-)
(B
(BPGP ID: 7AE45436
(BPGP Public Key: http://bu.orbitel.bg/pgp/bu.asc
(BPGP Fingerprint: 7923 8D52 B145 02E8 6F63 8BDA 2D3F 7C0B 7AE4 5436

pgpBAtVz6F3Ky.pgp
Description: PGP signature


[PHP] Thanks but problem again! Re: [PHP] PHP script problem (with MySQL)

2005-04-19 Thread Sugimoto
Thank you, Richard,
(B
(BI simply change this part
(B(select * from openart_table) into
(B(select substring(loc1, 1, 3) as THREE_LETTER_CODE, * from openart_table)
(Bbut Ive got this error, whats wrong with it?
(B
(BWarning: mysql_num_rows(): supplied argument is not a valid MySQL result
(Bresource in c:\apache..\openart\test\openart_search.php on line 98
(BRecords Found
(B
(BWarning: mysql_fetch_array(): supplied argument is not a valid MySQL result
(Bresource in c:\apache\openart\test\openart_search.php on line 100
(B
(BCheers
(B
(B-- 
(BPHP General Mailing List (http://www.php.net/)
(BTo unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Thanks but problem Again! (MySQL PHP database script PLEASE)

2004-10-22 Thread Ramil Sagum
On Fri, 22 Oct 2004 16:13:07 +0900, Sugimoto [EMAIL PROTECTED] wrote:
 Thank you for two of you.

dou itashimashite.

This is your problem:

 Bad query: You have an error in your SQL syntax near 'and Tit like and Aut
 like and Auty like ' at line 4

The SQL query you formed may have an invalid syntax. Dakara, $result
does not contain a  valid MySQL resource. Mochiron, next operations
with $result will produce errors:

 Warning: mysql_num_rows(): supplied argument is not a valid MySQL result...
 Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result

What you can do is to debug first your SQL statement:

$sql = select * from gen_table   where GO like . $_GET[go].
and ym like . $_GET[dt] .
   and Tit like .$_GET[ti]. .
   and Aut like .$_GET[au]. 
  and Auty like .$_GET[ay];

print_r($sql);  //show the SQL statement, (remove this when everything
is working)

$result = mysql_query($sql);

print_r to var_dump ha php de debug no ni yaku ni tachimasu!



ramil

http://ramil.sagum.net


-- 


ramil

http://ramil.sagum.net

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Thanks but problem Again! (MySQL PHP database script PLEASE)

2004-10-22 Thread M. Sokolewicz
Ramil Sagum wrote:
On Fri, 22 Oct 2004 16:13:07 +0900, Sugimoto [EMAIL PROTECTED] wrote:
Thank you for two of you.

dou itashimashite.
This is your problem:

Bad query: You have an error in your SQL syntax near 'and Tit like and Aut
like and Auty like ' at line 4

The SQL query you formed may have an invalid syntax. Dakara, $result
does not contain a  valid MySQL resource. Mochiron, next operations
with $result will produce errors:

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result...
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result

What you can do is to debug first your SQL statement:
$sql = select * from gen_table   where GO like . $_GET[go].
and ym like . $_GET[dt] .
   and Tit like .$_GET[ti]. .
   and Aut like .$_GET[au]. 
  and Auty like .$_GET[ay];

print_r($sql);  //show the SQL statement, (remove this when everything
is working)
$result = mysql_query($sql);
print_r to var_dump ha php de debug no ni yaku ni tachimasu!

ramil
http://ramil.sagum.net

and now in english...? I don't think I understood even half of what you 
said... what does ha php de debug no ni yaku ni tachimasu mean? or 
dou itashimashite not to mention dakara and mochiron

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Thanks but problem Again! (MySQL PHP database script PLEASE)

2004-10-22 Thread Dan McCullough
Its been awhile since I did any PHP but I would look at if you need to excape some of 
those double quote or encapsulate your sql in a single quote.

Sugimoto [EMAIL PROTECTED] wrote:Thank you for two of you. Im amazed how quick the 
replys were. Very pleased.
When I simply inserted the PHP sentense, it worked.
But as I turned off register_globals,
and changed as Matthew suggested, it looked like this:

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result
resource in c:\apache\htdocs\momatlib\gen_search1.php on line 49
Records Available

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result
resource in c:\apache\htdocs\momatlib\gen_search1.php on line 52
BTW

When I added this (or die(Bad query: .mysql_error()); ) in this part
($result = mysql_query...)

Ive got this.

Bad query: You have an error in your SQL syntax near 'and Tit like and Aut
like and Auty like ' at line 4



Oh NO! Whats wrong with the script??

Any mistype or anything else? Or am I just stupid?

Arigato thank you.

Sugimoto

--










ID
Volume
Date
Title
Author
Page
Page
Image


mysql_connect(localhost,root,love);
mysql_select_db(gendai);
if (empty($_GET[go]) 
empty($_GET[dt]) 
empty($_GET[ti]) 
empty($_GET[au]) 
empty($_GET[ay])) {
echo 'Please type something';
}
elseif ($_GET[go] == % |
$_GET[dt] == % |
$_GET[ti] == % |
$_GET[au] == % |
$_GET[ay] == %) {
echo 'Not Valid';
}
else {
foreach ($_GET as $value) {
if (empty($value)) $value = %;
}

$result = mysql_query(select * from gen_table
where GO like .$_GET[go].
and ym like .$_GET[dt].
and Tit like .$_GET[ti].
and Aut like .$_GET[au].
and Auty like .$_GET[ay].);

$rows = mysql_num_rows($result);
echo $rows Records Available
;

while($row = mysql_fetch_array($result)){
?


?
?







.pdfpdf



}

}
?




--

HTML file here










Search FieldsInput Valuealign=centertips
ID [input] maxlength= 10

Volume [input] 10 maxlength= 10

Date [input] maxlength= 10

Title [input] maxlength=60

Author [input] maxlength=60

Yomi [input] maxlength=60

Search Another
Way








 [input] 
 [input] 






-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





Theres no such thing as a problem unless the servers are on fire!


-
Do you Yahoo!?
Express yourself with Y! Messenger! Free. Download now.

Re: [PHP] Thanks but problem Again! (MySQL PHP database script PLEASE)

2004-10-22 Thread Ramil Sagum
sorry, M. Sokolewicz, everyone, reposting in english :)
(previous post had some japanese text.)



Arigato thank you.

It was my pleasure.


This is your problem:

 Bad query: You have an error in your SQL syntax near 'and Tit like and Aut
 like and Auty like ' at line 4

The SQL query you formed may have an invalid syntax.  Because of this,
$result does not contain a valid resource. Of course, subsequent 
operations using $result will produce errors:

 Warning: mysql_num_rows(): supplied argument is not a valid MySQL result...
 Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result


What you can do is to debug first your SQL statement:

$sql = select * from gen_table   where GO like . $_GET[go].
   and ym like . $_GET[dt] .
  and Tit like .$_GET[ti]. .
  and Aut like .$_GET[au].
 and Auty like .$_GET[ay];

//print_r() and var_dump() functions are very helpful in debugging in PHP!
print_r($sql);  //show the SQL statement, (remove this when everything
is working)

$result = mysql_query($sql);



//add this code to check for $result's validity
if($result) {
   // do some error handling here
}

As the manual says, mysql_query returns a false when the statement is
invalid. Take a loot at  http://www.php.net/mysql_query , 
http://www.php.net/mysql_error , and http://www.php.net/mysql_errno
for more details on error handling.




---

ramil
http://ramil.sagum.net/blog

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Thanks but problem Again! (MySQL PHP database script PLEASE)

2004-10-22 Thread Matthew Sims
 Thank you for two of you. Im amazed how quick the replys were. Very
 pleased.
 When I simply inserted the PHP sentense, it worked.
 But as I turned off register_globals,
 and changed as Matthew suggested, it looked like this:

 Warning: mysql_num_rows(): supplied argument is not a valid MySQL result
 resource in c:\apache\htdocs\momatlib\gen_search1.php on line 49
 Records Available

 Warning: mysql_fetch_array(): supplied argument is not a valid MySQL
 result
 resource in c:\apache\htdocs\momatlib\gen_search1.php on line 52
 BTW

 When I added this  (or die(Bad query: .mysql_error()); ) in this part
 ($result = mysql_query...)

 Ive got this.

 Bad query: You have an error in your SQL syntax near 'and Tit like and Aut
 like and Auty like ' at line 4



Ramil and Dan are probably correct. There's something not right with your
query string.

A good test to try is to run the query from the mysql prompt and
substitute the vars with actual values and see if it returns correctly.

-- 
--Matthew Sims
--http://killermookie.org

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] thanks

2004-05-22 Thread Bill Freeburg
Thanks. Those solutions work.
  Bill

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Thanks for all the helped!

2004-04-06 Thread Jason T. Davidson
Looks like I went to the right place as I got many responses and what gave
me three days of headaches only took 5 mintues.

 

Thanks Again!

 

-Jason T. Davidson



[PHP] Thanks : Re: [PHP] String Length ??

2004-03-22 Thread gordon stewart

--- Filip de Waard [EMAIL PROTECTED] wrote:
 strlen() is the correct function to use here. Use it
 like:
 
 echo strlen($_POST['input_name']);
 
 Where $_POST['input_name'] should be replaced by the
 variable you want 
 to check. strlen() is always right, but it counts
 the actual charactars 
 of the string (which may differ from those who are
 shown in the 
 browser, please look at the HTML source instead).

Thanks - Yep - Lots of spaces in  my output...

Ive added a small regex  its got rid of the lines :)

$pattern = /\s+/i;
$replacement =  ;
$texta= preg_replace($pattern, $replacement, $texta);

G



__
Do you Yahoo!?
Yahoo! Finance Tax Center - File online. File on time.
http://taxes.yahoo.com/filing.html

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Thanks guys it works great

2004-02-20 Thread Piet from South Africa

Piet From South Africa [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 i have the following problem.

 when i href like this

  a href=nextpage.php?name=$name

 and the name contains a  sign, it does not post it to the next page.

 if the name is bedbreakfast it stops at bed.

 Can anyone tell me how to do this.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Thanks I figured it out.

2003-11-24 Thread Renaldo De Silva
Thanks I figured it out it was just what you suggested.

Renaldo De Silva [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 Forgive me if you've already addressed this, I'm trying to post some
 variable to a php sript and they just arn't registering if i use the code
 below it get's the variable and it's contents

  ?

  echo Values submitted via POST method:br;
  reset ($HTTP_POST_VARS);
  while (list ($key, $val) = each ($HTTP_POST_VARS)) {
 echo $key = $valbr;
  }

  ?

 but if I call the variable directly

 ? echo $renaldo; ? it prints nothing, should I go ahead and take apache
 2.* off my box or if the fix easy.



 --
 --
 Regards
 Renaldo De Silva
 Web Developer
 868 628 0979
 http://webberz.com
 Internet and Networking Specialists

 -
 Confidentiality Note: This e-mail, and any attachment to it, contains
 privileged and confidential information intended only for the use of the
 individual (s) or entity named on the e-mail. If the reader of this e-mail
 is not the intended recipient, or the employee or agent responsible for
 delivering it to the intended recipient, you are hereby notified that
 reading it is strictly prohibited. If you have received this e-mail in
 error, please immediately return it to the sender and delete it from your
 system. Thank you.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Thanks Chris.

2003-10-14 Thread Gabriel Peugnet
I see you are an authority in these matters.
I've seen the page you told me to.

Thank you so much.
Gabriel.


Chris Shiflett [EMAIL PROTECTED] escribió en el mensaje
news:[EMAIL PROTECTED]
 --- Gabriel Peugnet [EMAIL PROTECTED] wrote:
  Could some one tell me where can I find the documentation for the
  Hedear() function?
 
  The manual does not provide it but just some examples.
 
  I know Header( Location: http... ), Header( Expires ... ).
 
  But want to know about:
  Content...
  Content-Disposition
  etc.

 Those are HTTP headers. Truly, you can send any header you want, but if
you
 want to learn about all of the valid ones, it requires an understanding of
 HTTP.

 shameless_plug

 The HTTP Developer's Handbook was written specifically for Web developers
and
 includes a complete reference to HTTP as well as many related topics such
as
 state and session management, SSL, etc. All of the examples are given in
PHP.

 You can read some sample chapters and get a bit more information from:

 http://httphandbook.org/

 /shameless_plug

 RFC 2616 contains about 80% of the specification. However, it is not very
 friendly to read, plus the 20% it doesn't include can be important:
cookies,
 authentication, etc.

 Hope that helps.

 Chris

 =
 My Blog
  http://shiflett.org/
 HTTP Developer's Handbook
  http://httphandbook.org/
 RAMP Training Courses
  http://www.nyphp.org/ramp

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Thanks Richard Schwartz

2003-09-04 Thread Joe Harman
Dude stop being a jerk, I don't treat people this way... Ah, anyhow...
It's not me who will judge you Is it?

 -Original Message-
 From: Richard Schwartz [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, September 04, 2003 11:28 AM
 To: Joe Harman
 Subject: Re: Thanks From Joe: ATM Archives and List Guidelines
 
 
 unsubscribe ***
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 OK, I already know your next post that will be such a great 
 challenge.   It
 will be a multipart question and all parts will have the same answer:
 
 1.  Where can I find a beautiful, bright, talented, 
 compassionate, and well educated woman, half my age, who will 
 love me and be devoted to me and our children.
 
 2.  Where can I find a doctor who will listen?
 
 3.  Where can I find a mechanic who will fix my car right the 
 first time.
 
 4.  Where can I find an honest lawyer?
 
 5.  Where can I find a realtor who places community interests 
 above profits?
 
 
 
 
 - Original Message - 
 From: Joe Harman [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, September 03, 2003 9:42 PM
 Subject: Thanks From Joe: ATM Archives and List Guidelines
 
 
 
  Cheers!
  Okay... Thanks to all of you... But this was the best email for 
  guidelines I have ever seen wrote. (the 11 below)... I will stick 
  through all the hazing... I promise... So filter me if you would 
  like... But I hope to soon be an asset to the list...
 
  My next post should be challenging to even the most 
 seasoned ATMers... 
  I promise!
 
  /Cheers!
  Joe
 
  :o)
 
   -Original Message-
   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On 
 Behalf Of 
   George Anderson
   Sent: Wednesday, September 03, 2003 11:09 PM
   To: Joe Harman; atm
   Subject: Re: ATM Archives and List Guidelines
  
  
  
   Hi Joe
  
   Don't let the rude manners of some of the members put you off. 
   They are actually quite nice people who are quite willing 
 to share 
   information and ideas. They are just a little cranky at 
 responding 
   to the same seven questions (you've asked the first) that 
 get asked 
   by all new members. Remember the two old guys on the muppet show? 
   There are close to a thousand of us here. What you have just been 
   through is sort of an initiation ceremony that most new members go
   through. The HTML thing is a combination of netiquette and
   the fact that some members pay by the byte and have slow
   connections. Besides the read the archives chant from
   almost every member you will encounter the following
   responses to questions that you will ask over the next few months.
  
   1) Read the archives  (stock answer for any question for which we 
   may or may not have the answer)
  
   2) Check Texereau, it is part of the requisite book list
  
   3) Don't read Texereau, it is an outdated fascist novel
  
   4) The answer is in Ingalls Book 2
  
   5) Read the archives (I'm sure someone asked this same 
 question back 
   in
   '95)
  
   6) Grind more worry less (actually very true and valuable)
  
   7) Verify the secondary size with Newt
  
   8) Don't use Newt, it doesn't give a true representation
  
   9) Read the archives (Did I mention this yet?)
  
   10) No it can't be done, Peter Hoffenstoffer tried that 
 back in 98 
   and the mirror suffered from stig and potatoe chipping (check the 
   archives)
  
   11) Yes it works, Peter fixed it with a new mirror cell and 
   used/eliminated the sling in '99 (read the archives)
  
   And yes there is a Cabal in the ATM list, the proof is that they 
   deny the presence of the Cabal. Why would they deny the 
 presence if 
   it didn't exist?  VBG Pushing glass and making 
 telescopes is a zen 
   like pursuit, think back to the '70s and the show Kung-Fu 
 Can you 
   snatch the pebble from my
   hand...   Welcome to the list Grasshopper.
  
   Hopefully none have been offended.
  
   George Anderson  (who hasn't made enough mirrors to be 
 allowed to be
   curmudgenly)
   Montreal Canada
  
   Clear skies and good health
  
   Joe Harman wrote:
   
Hello,
   
I really appreciate those who help here on this list... So
   thank you
to all of you... I've got a couple of really great
   recommendations...
I will be very honest about this, this list is extremely
   picky... NO
HTML Mail... Search the archives before you post So
   before I get
chewed out anymore, I am asking that someone please send me
   a link to
the guidelines for this mail list... And to the archives so I 
don't accidentally offend anyone anymore... The site I got this
   email list
from listed no guidelines or archives.
   
The majordomo response should include these guidelines when 
someone subscribes. All I did was ask a question... I don't 
deserve to get rude emails from people. The topic of this email 
list is Amateur Telescope Makers, so I was thinking 
 people would 
be a
   little more open
to the fact that there could be a beginner 

Re: [PHP] Thanks Richard Schwartz

2003-09-04 Thread Curt Zirzow

You should be more careful at whom your including these replies to :)


Curt
-- 
I used to think I was indecisive, but now I'm not so sure.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Thanks Richard Schwartz

2003-09-04 Thread Chris W. Parker
Curt Zirzow mailto:[EMAIL PROTECTED]
on Thursday, September 04, 2003 10:58 AM said:

 You should be more careful at whom your including these replies to :)

But public floggings are good every once in a while. :)


c.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Thanks!

2003-07-26 Thread Irvin Amoraal
Thanks to both John and Curt who gave me the same answer ... and it actully
makes sense. Don't know why I didn't think of it myslef g.

Irvin.

Irvin Amoraal [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 I have two independent websites, both with their own mySQL db's. I would
 like to run a query in site A against site B's database. I am trying to
 establish a connection using something like:
  $conn = mysql_connect(abc.com:3306, $user, $pass);

 A warning is returned to the browser :
 Access denied for user: '[EMAIL PROTECTED]' where my_web_host.net is the
 name of the host server.

 The db's name would be abc_com (This is not the actual name but the form
is
 consistent with the real db name).

 If I try port 3307 I get Can't connect to MySQL server on 'abc.com'(111),
 so I assume that I am able to communicate with the msSQL server itself,
but
 is a permissions issue. I know that the username and password are correct.

 Could it be that remote acccess to the db is disabled? Or am I omitting
 something?

 Your help is appreciated.

 Irvin Amoraal.





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Forms PHP - Thanks

2003-07-02 Thread Gary Ogilvie
Thanks all,

I shall try these methods now. I may be a while - the form is pretty
large :)


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Thanks problem solved

2003-02-05 Thread Brad Esclavon
once removed from same directory as the login page, the secured page was
secure



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks for help with classes

2003-02-03 Thread Leonard Burton
Hey Guys,

Thanks for all the help with classes.  I think I can now turn the
lightswitch on.

Leonard Burton
[EMAIL PROTECTED]
www.phpna.com


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks Marek, Jon, Ernest

2003-01-23 Thread Denis L. Menezes
Thanks Marek, Jon, Ernest.



Denis



[PHP] Thanks

2002-12-11 Thread Mako Shark
Long time in coming, but thanks to all that have
helped with my stremaing audio and $_array questions.
I've figured out my problems thanks to all your help!

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] thanks :)

2002-11-21 Thread empty
ooww

there is nothing slecet in mysql :)

thanks all


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks !!!

2002-11-14 Thread Mike MacDonald
Well thanks heaps everyone for some very good ideas !
I'm taking bits and pieces and coming together with a very fine 
understanding !

Much appreciated !


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks!

2002-10-01 Thread Rick Beckman

Thanks, Erwin!

-- 
Kyrie Eleison,
Rick
www.spiritsword.com/phpBB2/


Erwin wrote:
 On line 6, I have the list of musicians in the song.
 Example (ignore the quotes): Doyle Lawson -- lead vocal; Dale Perry
 -
 - bass vocal
 Is there a way to make it so that, when I include line 6 in my PHP
 template, the ; will be replaced with a line break so I get one
 musician per line in the HTML output?

 You could use str_replace on the line you've just read...
 http://www.php.net/str_replace

 Lines 7 and so on are the lyrics. The text file has one line per line
 (makes sense, right?) and a blank line between sections of the song.
 I have the script set up to read all the lines from 7 on, but it
 jumbles them all together, ignoring the line breaks. Is there a way
 to script PHP to add the line breaks, or should the line break HTML
 just be inserted everywhere needed in all my separate files?

 Use nl2br: http://www.php.net/nl2br
 This function replaces all \n (newlines) with BR\n (HTML break
 with newline)

 HTH
 Erwin



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks...

2002-09-10 Thread Chuck \PUP\ Payne

Many thanks. That was the trick. :)

Chuck Payne
Magi Design and Support


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks - got it

2002-08-12 Thread Kai Hinkelmann

Hi, Phil,

Excuse me, you was right. I changed the mapping for the server but not for
the directory. Now everything works fine.

Thanks again.

Bye

Kai

Phil Driscoll [EMAIL PROTECTED] schrieb im Newsbeitrag
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
On Monday 12 August 2002 3:52 pm, Adam Voigt wrote:
 My guess would be that this is a browser issue, with the
 browser associating .rtf with a word doc (or Rich Text to be
 more accurate) and if this is the case, there's not much you
 can do except not name your PHP files .rtf. Since, each person
 who comes to your site will most likely have .rtf set as
 a Rich Text Document and will try and interpret it.

There may be an issue about what the browser chooses to do with the .rtf
extension, however if the web server was correctly configured, the php
source
of the .rtf file would not be sent by the server, but would have at least
been interpreted by php, which would then have sent out the correct mime
type
header to give the browser a chance of interpreting the data as html.

Maybe the iis script mapping configuration is being overridden somewhere in
the tree by a child node?

Cheers
--
Phil Driscoll



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks Matt

2002-08-02 Thread Sebastian Tomasino

thank you matt for explain what´s wrong.. short but helpfull !!!

Sebastian


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks

2002-07-09 Thread Richard Lynch

Probably a stupid question. Is there anyway to force POSTing a form from
the refresh META?

META HTTP-EQUIV=Refresh CONTENT=2;URL=someURL/somescript.php

IMHO that is NOT possible, but maybe I am wrong.

You are correct -- it cannot be done.

If there is no JavaScript, you can only force a POST by getting the user
to click on a FORM element, some how, some way...

*UNLESS*

Use PHP in a GET URL to call something like Rasmus' old 'posttohost'
function which will do the POST.

I don't know if that will work for what you are trying to achieve...

I guess the root question is *WHY* do you want to force a POST?

-- 
Like Music?  http://l-i-e.com/artists.htm


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks - Actually POSTING without javascript

2002-07-09 Thread Richard Lynch

javascript in this page verifies user configuration (screen, java 
enabled, platform etc) and stuffs this data into a hidden form then 
sends it back to index.html where data will be used to understand 
whether we can rely on jscript and cookies within this session.

Aha!

What you probably should do is have your index.php page spew out some
JavaScript that re-directs them to the JavaScript-enabled home page, and
then whatever you wish to display to the non-JavaScript users.

The JavaScript users will end up on the other home page, and the
non-JavaScript users won't.

Separate the non-JavaScript users right away.

-- 
Like Music?  http://l-i-e.com/artists.htm


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks

2002-07-06 Thread Skyhawk

Thanks

Val Petruchek [EMAIL PROTECTED] escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 FROM THE MANUAL:

 header(Expires: Mon, 26 Jul 1997 05:00:00 GMT);// Date in the past
 header(Last-Modified:  . gmdate(D, d M Y H:i:s) .  GMT);
  // always modified
 header(Cache-Control: no-store, no-cache, must-revalidate);  // HTTP/1.1
 header(Cache-Control: post-check=0, pre-check=0, false);
 header(Pragma: no-cache);  // HTTP/1.0



 --
 Sincerely, val petruchek
 Skyhawk [EMAIL PROTECTED] ÓÏÏÂÝÉÌ/ÓÏÏÂÝÉÌÁ × ÎÏ×ÏÓÔÑÈ ÓÌÅÄÕÀÝÅÅ:
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  Please, How do I make for my webpage expires before time?
 
  Thanks
 
  I'm sorry my english, I'm brazilian.
 
 







-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks

2002-07-06 Thread Alberto Serra

ðÒÉ×ÅÔ!

Probably a stupid question. Is there anyway to force POSTing a form from
the refresh META?

META HTTP-EQUIV=Refresh CONTENT=2;URL=someURL/somescript.php

IMHO that is NOT possible, but maybe I am wrong.

ÐÏËÁ
áÌØÂÅÒÔÏ
ëÉÅ×

-- 


-_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-

LoRd, CaN yOu HeAr Me, LiKe I'm HeArInG yOu?
lOrD i'M sHiNiNg...
YoU kNoW I AlMoSt LoSt My MiNd, BuT nOw I'm HoMe AnD fReE
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks

2002-07-06 Thread B.C. Lance

not from meta refresh. but javascript could do that. set a timeout that 
will fire the submit event after 2 seconds. that will work.

b.c. lance

Alberto Serra wrote:
 ðÒÉ×ÅÔ!
 
 Probably a stupid question. Is there anyway to force POSTing a form from
 the refresh META?
 
 META HTTP-EQUIV=Refresh CONTENT=2;URL=someURL/somescript.php
 
 IMHO that is NOT possible, but maybe I am wrong.
 
 ÐÏËÁ
 áÌØÂÅÒÔÏ
 ëÉÅ×
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks

2002-07-06 Thread Alberto Serra

B.C. Lance wrote:
 not from meta refresh. but javascript could do that. set a timeout that 
 will fire the submit event after 2 seconds. that will work.
 
 b.c. lance
 

ðÒÉ×ÅÔ!

I already have that and it works fine. The problem is when jscript is 
not working (or missing). I was trying to build up some panic tree in 
case jscript fails.

ÐÏËÁ
áÌØÂÅÒÔÏ
ëÉÅ×




-- 


-_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-

LoRd, CaN yOu HeAr Me, LiKe I'm HeArInG yOu?
lOrD i'M sHiNiNg...
YoU kNoW I AlMoSt LoSt My MiNd, BuT nOw I'm HoMe AnD fReE
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks

2002-07-06 Thread B.C. Lance

you might wanna fire that javascript using onload from the body tag. 
that kinda assure the page is loaded successfully before the event takes 
off.

Alberto Serra wrote:
 I already have that and it works fine. The problem is when jscript is 
 not working (or missing). I was trying to build up some panic tree in 
 case jscript fails.
 
 ÐÏËÁ
 áÌØÂÅÒÔÏ
 ëÉÅ×
 
 
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks

2002-07-06 Thread Alberto Serra

B.C. Lance wrote:
 you might wanna fire that javascript using onload from the body tag. 
 that kinda assure the page is loaded successfully before the event takes 
 off.

ðÒÉ×ÅÔ!

It is there already. My problem is to do it something that will save my 
*ss in case jscript is *NOT* there. So it must be a no thrills HTML 
solution that will run anyway, no matter how poor in resources the 
browser is.

ÐÏËÁ
áÌØÂÅÒÔÏ
ëÉÅ×


-- 


-_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-

LoRd, CaN yOu HeAr Me, LiKe I'm HeArInG yOu?
lOrD i'M sHiNiNg...
YoU kNoW I AlMoSt LoSt My MiNd, BuT nOw I'm HoMe AnD fReE
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks

2002-07-06 Thread B.C. Lance

hm... how about sticking couple of iframes that will load the piece of 
javascript and have each of the javascript in the iframe firing at 
different time? i suppose at least 1 copy of javascript will be there to 
do the intended work.

Alberto Serra wrote:
 It is there already. My problem is to do it something that will save my 
 *ss in case jscript is *NOT* there. So it must be a no thrills HTML 
 solution that will run anyway, no matter how poor in resources the 
 browser is.
 
 ÐÏËÁ
 áÌØÂÅÒÔÏ
 ëÉÅ×
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks - Actually POSTING without javascript

2002-07-06 Thread Alberto Serra

ðÒÉ×ÅÔ!

B.C. Lance wrote:
 hm... how about sticking couple of iframes that will load the piece of 
 javascript and have each of the javascript in the iframe firing at 
 different time? i suppose at least 1 copy of javascript will be there to 
 do the intended work.

I realize I was being obscure :) BTW, the solution was obvious, I'll 
better explain what I am doing.

This is a loader utility that is put instead of the index.php script 
to configure a session by understanding what kind of client is calling, 
so it's very generical software that is shared among many a project.

In short, what index.php does is:
1) accept command line parameters (and the docs referrer) that are 
received and stock them somewhere for later use
2) sets a test cookie
3) generate a page that shows loading...

javascript in this page verifies user configuration (screen, java 
enabled, platform etc) and stuffs this data into a hidden form then 
sends it back to index.html where data will be used to understand 
whether we can rely on jscript and cookies within this session.

*The problem was here*. What if this second step fails? easy, I just 
leave the META as is and stock previous data on a session during the 
first execution of index.php

At this point index.php knows all it needs to fill in cionfiguration 
data and it just includes the real home page. From now on we will be 
able to tailor channelling (that is, cookies or not, jscript or not) 
without reasonable doubts. Yes, the user *may* change it's configuration 
during the session, but this is very low percentage of cases and we can 
live with it.

Well, that's the most general part of it. But at least it's clearer.

ÐÏËÁ
áÌØÂÅÒÔÏ
ëÉÅ×



-- 


-_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-

LoRd, CaN yOu HeAr Me, LiKe I'm HeArInG yOu?
lOrD i'M sHiNiNg...
YoU kNoW I AlMoSt LoSt My MiNd, BuT nOw I'm HoMe AnD fReE
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks - Actually POSTING without javascript

2002-07-06 Thread B.C. Lance

yes. now its clearer. hm... but i can't think of submitted the 
information if javascript is off on the client browser. unless you stick 
in a button telling the user to hit it if the page do not bring him to 
another after a specific timing. a button probably don't look 
presentable. use an image as the input type. that will probably brighten 
up the page.

in short, what i mean is let the user do the submit if javascript fails.

an image of brintney spear and a text on it telling the user to click on 
  sounds appealing to you? ;)

b.c. lance

Alberto Serra wrote:
 ðÒÉ×ÅÔ!
 
 *The problem was here*. What if this second step fails? easy, I just 
 leave the META as is and stock previous data on a session during the 
 first execution of index.php
 
 At this point index.php knows all it needs to fill in cionfiguration 
 data and it just includes the real home page. From now on we will be 
 able to tailor channelling (that is, cookies or not, jscript or not) 
 without reasonable doubts. Yes, the user *may* change it's configuration 
 during the session, but this is very low percentage of cases and we can 
 live with it.
 
 Well, that's the most general part of it. But at least it's clearer.
 
 ÐÏËÁ
 áÌØÂÅÒÔÏ
 ëÉÅ×
 
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks - Actually POSTING without javascript

2002-07-06 Thread Alberto Serra

ðÒÉ×ÅÔ!


 an image of brintney spear and a text on it telling the user to click on 
  sounds appealing to you? ;)

LOLOL yes, something like that :) when the second execution fails (that 
is, the refresh META sends back no data on the POST channel) we show the 
user a form with the local logo, where he just says what the dimensions 
of his screen are and we assume that javascript is not present within 
the sesion :)) The problem was just in not losing the referer and the 
passed link while doing all this snake-like contorsions :)

ÐÏËÁ
áÌØÂÅÒÔÏ
ëÉÅ×



-- 


-_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-@-_=}{=_--_=}{=_-

LoRd, CaN yOu HeAr Me, LiKe I'm HeArInG yOu?
lOrD i'M sHiNiNg...
YoU kNoW I AlMoSt LoSt My MiNd, BuT nOw I'm HoMe AnD fReE
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks all I used javascript.

2002-06-05 Thread Renaldo De Silva

Thanks all I used javascript.




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks for the substr help

2002-05-21 Thread r

Hi,
Thanks for the help,
To answer your question and suggestion,
The reason I didnt know that is coz i am not going by the online manual but
by a book called PHP blackbook Its pretty good but just a bit hazy here
and there.
Thanks again.
-Ryan


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Thanks for the substr help

2002-05-21 Thread Miguel Cruz

On Wed, 22 May 2002, r wrote:
 To answer your question and suggestion,
 The reason I didnt know that is coz i am not going by the online manual but
 by a book called PHP blackbook Its pretty good but just a bit hazy here
 and there.

You should definitely download or use the online manual. It provides 
definitive answers to all sorts of questions.

miguel


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks

2002-04-21 Thread Victor Javier Martinez Lopez

Thanks everyone for your help.





[PHP] Thanks away...

2002-04-09 Thread Chuck \PUP\ Payne

I want to thanks all those that help at 2~4am this morning (EST). I got it
fixed, but I had to reinstall Apache and PHP, lucky it easy with SuSE Linux.
But I still have no clue to why it wasn't working, but I wanted to thank any
everyone that has help me on this sleepless night. It's great to know there
is help 24/7.

Chuck Payne
Magi Design and Support.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Thanks! Re: [PHP] Print ONCE ONLY?????

2002-01-12 Thread Dani

Thanks very much!

it works!

Sincerely,
Dani

Thomas Holton wrote:

 You should be able to use and as many times as you want.
 You should also make sure that the query you are making below is returning
 the number of records you think it should be:
 $numrecords = mysql_num_rows($result);
 then you can set up a loop to get the results:
 while ($i  $numrecords)
 { $col_name = mysql_result($result, $i, column name);
   ..
   print br$col_name ...
   $i++;
   # for each row
 }

 hope this helps.

 ..

 On Sun, 13 Jan 2002, Dani wrote:

 
  Hi Again!
 
  Why does this print only one record?
 
  1. I have checked on the table on MYSQL and I have  2 records with this
  data.
  2. Can I actually use the word and twice or three times for filtering
  the data that I need during query?? (example: $query = select * from
  main_table where item_type = 'hotel' and class = 'melati' and price =
  '200' and facilities = 'swimming pool' 
 
  Could some body help please???
 
  here is my code
 
  ...
  $query = select * from main_table where item_type = 'hotel' and class =
  'melati';
  $result = mysql_query($query);
  $row = mysql_fetch_array($result);
  echo $row[item_id],BR;
  while ($row = mysql_fetch_array($result))
   {
   echo WHILE RESULT,$row[item_type],BR,$row[class];
   }
 
 
  thank you again!
 
  regards,
  Dani
 
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  To contact the list administrators, e-mail: [EMAIL PROTECTED]
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] thanks

2001-12-15 Thread david

 been using php for a few months now, just wanted to say a big THANK YOU to all the 
developers for such a wonderful language, thanks guys!

-- 
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] thanks

2001-12-15 Thread Michael Sims

At 07:56 PM 12/15/2001 +, [EMAIL PROTECTED] wrote:
  been using php for a few months now, just wanted to say a big THANK YOU 
 to all the developers for such a wonderful language, thanks guys!

Well, I have to second that.  If it weren't for PHP I probably would have 
never gotten into web development at all.  I've said it before and I'll say 
it again...if Microsoft solutions were the only ones available I would have 
switched careers long ago.  Thank God (and the PHP developers) for PHP!


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] thanks

2001-11-28 Thread Yoed Anis

thanks guys it would have taken me forever to discover your tips.


Yoed Anis [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Hey Guys,

 I'm having a trouble I can't seem to solve and hoped maybe one of you
might
 take a look and see if you can help me.
 (If you don't want to learn my approach just skip to the bottom to help me
 with the final bit.. skip to hear)

 What I want to do is open the text file testtext.txt (attached) and input
 all the information from one row (divided into fields and colum) and input
 that into a database (mysql)... I thought the easiest way to do this is
 split the fields in the row into an array... since they are all seperated
by
 spaces If only it was so easy. This is what I did:

 code
 $count=0;
 $fd = fopen (./Testtext.txt, r);
 while (!feof ($fd)) {
 $buffer = fgets($fd, 4096);
 $count++;
 if($count  2  $count  4){
  $thearray=split([ ]+, $buffer);
  $maxi=count($thearray);
  for($i=0; $i$maxi; $i++){
   echo $thearray[$i] $i ;
  }
  echo br;
 }
 }
 /code
 Ok now the echo statement above prints the following:
 07/29/2001 12:00 0 a 28.6 28.6 28.5 0.0 31.2 -- 0 0.0 0.0 1018.8
3.1
 6.3 N 28.0 1.9 0.00 0.0 74 23.4 32.1 10 12.00 1
 It looks all good till well the 0 (where did that come from?) after
the
 12:00! But upon further code writing:
 code
 $wdate=$thearray[0];
 $wtime=$thearray[1];
 $wtimeampm=$thearray[2];

 echo BRThe date of the data is : $wdate taken at the time of $wtime
 $wtimampm;
 /code
 that prints:
 The date of the data is : 07/29/2001 12:00 taken at the time of a 28.6
28.6
 28.5 0.0 31.2 -- 0 0.0 0.0 1018.8 3.1 6.3 N 28.0 1.9 0.00 0.0 74 23.4
 32.1 10 12.00
 It looks as the array is having trouble splitting the date from the time
 (why there is a space there!!??) and makes all the other data into one or
 two other parts of the area (instead of the many fields).

 --HEAR--
 So I've narrowed it to this:  $thearray=split([ ]+, $buffer);
 Does this look like what I should use to separate all my data in the
array?
 It gets this data from one row in the file testtext.txt which looks like
all
 fields are separated by at least one space. What should I do?

 Thanks a bunch,
 Yoed







-- 
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] javascript to php ???? THANKS =)

2001-11-13 Thread fitiux

Thanks to all for help me..
=)


I hope to help someone soon.  


--Patricio.




[PHP] Thanks Jason

2001-10-03 Thread Jan Grafström

Regards
Jan
Jason Stechschulte wrote:

 On Wed, Oct 03, 2001 at 02:13:54PM +0200, Jan Grafström wrote:
 
How does server handle the .inc extension and for what do I use it ?
Where can I read about it?

 
 This depends on the setup of the web server.  On some servers, it is set
 up to be parsed just as a .php extension would be.  On these servers,
 people put PHP code into these files and then include() them.
 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] thanks Dell coleman!

2001-08-25 Thread nafiseh saberi


hi.
thanks .
can you describe more about a href=$PHP_SELF?params ???
nafiseh.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] thanks

2001-08-22 Thread nafiseh saberi


thanks for 
time and pg_dump.

nafiseh.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] thanks all sesion_start problem

2001-08-13 Thread Aniceto Lopez

Ok. Richard was right, the php code was placed in the middle
of the html. I place it at the beguining oh the file (before html)
and it works. Thanks

Thanks also Daniel for your advice:
first use session_start() and than session_name


 Did you make sure everything below is BEFORE the html tag?
 Also you can just set the variable $sesionvar like this:
 $sesionvar = fulanito;
 instead of
 $HTTP_SESSION_VARS[sesionvar] = fulanito;


-- 
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] thanks Hrishi AND ANOTHER QUESTION ?

2001-05-09 Thread Adaran (Marc E. Brinkmann)

Hi Jorge Amaya,

Wednesday, May 09, 2001, 11:39:36 AM, you wrote:

Jorge THANK YOU FOR YOUR CONCEPTS, HELPED ME ENOUGH, YOU ARE VERY KIND, I HAVE 
Jorge A QUESTION MORE, APACHE IT| ALREADY WORKS ME, IT LOADS ME PHP4, BUT THE 
Jorge NAVIGATOR  DOESN'T  BEGIN..

Jorge IT DOESN'T LOAD THE NAVIGATOR UP WITH APACHE.

Jorge APOLOGIZE TO HAVE WRITTEN YOU TO YOUR OTHER MAIL, A THOUSAND EXCUSES.

well, *please* turn off your capslock, it's really annoying, and some people
(like me) understand CAPITALS as shouting.

Well, what OS/Navigator/Apache version are u using ?

---
EnjoY,
 Adaran ([EMAIL PROTECTED])
   check http://www.adaran.net



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re[2]: [PHP] thanks Hrishi AND ANOTHER QUESTION ?

2001-05-09 Thread Adaran (Marc E. Brinkmann)

Jorge HI MARC

Jorge I have installed Apache on windows 98, php4 already this installed, the 
Jorge navigator that I use is netscape 6.0 
Jorge IT DOESN'T LOAD THE NAVIGATOR UP WITH APACHE.

Well, I do have that problems, too. I'm using exactly the same programs, and if
I have Apache Running, Netscape won't start. If I close Apache, start Netscape
and then run it again everything runs fine...

With ICQ 98a, I've got the same problem, even in many other Programs. With
Apache luckily only Netscape doesn't seem to work =). With ICQ, many many
Applications (Photoshop, Homesite, Winamp, some from time to time...) won't start when 
I run them. Closing ICQ immediately solves the
problem...

---
EnjoY,
 Adaran ([EMAIL PROTECTED])
   check http://www.adaran.net



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] thanks Hrishi AND ANOTHER QUESTION ?

2001-05-08 Thread Jorge Amaya

THANK YOU FOR YOUR CONCEPTS, HELPED ME ENOUGH, YOU ARE VERY KIND, I HAVE 
A QUESTION MORE, APACHE IT| ALREADY WORKS ME, IT LOADS ME PHP4, BUT THE 
NAVIGATOR  DOESN'T  BEGIN..

IT DOESN'T LOAD THE NAVIGATOR UP WITH APACHE.

APOLOGIZE TO HAVE WRITTEN YOU TO YOUR OTHER MAIL, A THOUSAND EXCUSES.




-- 
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] THANKS (was: VERY URGENT -- MIRROR FOR PHP.NET ??)

2001-04-12 Thread Reuben D Budiardja

I see.  Wonderful !!

Thanks again to anyone who responded within minutes. This is a great list :).

Reuben D. B


At 12:37 AM 4/12/01 -0700, Rasmus Lerdorf wrote:
Pick just about any country code.  ie.  ca.php.net, uk.php.net,
de.php.net, us2.php.net (second US mirror)

On Thu, 12 Apr 2001, Reuben D Budiardja wrote:

  Hi All,
  I'm in the middle of crisis. I need to meet the deadline tomorrow, and
  tonight the www.php.net seems to be down.
  Anyone know any mirror site of www.php.net?
  I need function reference and manual only, and I have been always totally
  dependence on www.php.net. So, if anyone can tell me any mirror site of
  www.php.net so that I can continue my work, that would be really-really 
 great.
 
 
  Thanks a lot
  Reuben D. Budiardja
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  To contact the list administrators, e-mail: [EMAIL PROTECTED]
 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] PWS PHP Thanks

2001-02-15 Thread kaab kaoutar

Thanks a lot guys for ur help!


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]