[PHP] Re: help, please, understanding my problem

2010-02-23 Thread Stan
Thanks all. I rediscovered DIFF, compared the source for the first and second rendering. Besides the unique variable names there was also the message ... which contained imbedded single quote marks. When I changed them to imbedded double quote marks the problem went away. ""Stan"" wrote in mess

Re: [PHP] Re: help, please, understanding my problem

2010-02-23 Thread Rene Veerman
On Tue, Feb 23, 2010 at 1:03 PM, Ashley Sheridan wrote: > Are you maybe modifying it in > a way that breaks the javascript? > that would be my guess too... firefox + firebug will often give accurate error messages for badly formed js. the error itself is known to be caused by malformed js unable

Re: [PHP] Re: help, please, understanding my problem

2010-02-23 Thread Ashley Sheridan
On Tue, 2010-02-23 at 05:55 -0600, Stan wrote: > It works like it is ... once. What I don't understand is why the client > browser(s I have tried it with Firefox and IE 6) can't find the Javascript > function the second time. > > > I've had a look, but I'm not sure what you're trying to achi

[PHP] Re: help, please, understanding my problem

2010-02-23 Thread Stan
It works like it is ... once. What I don't understand is why the client browser(s I have tried it with Firefox and IE 6) can't find the Javascript function the second time. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Help Please in using fopen in PHP

2003-08-14 Thread Anthony Ritter
[EMAIL PROTECTED] wrote in message: > Hi Folks, > > I am currently learning php and Mysql a scripting language and DB i just feel > in love with. I am currently having problem in opening file to put data > collected from clients when the purchase from an online shop. The scripts is as > follows. >

Re: [PHP] Re: Help please!

2003-06-26 Thread Nadim Attari
> We always send the mail to [EMAIL PROTECTED], and not using "reply to group" function,I think there's no easy way to do this.If you really have problems with PHP,sending mail is not the important thing,the more important thing is to get a good reply!Sorry,it's my own opinion:) - Yea for

[PHP] Re: Help please!

2003-06-26 Thread poetbox
hi, Nadim Attari£¡ Well it doesn't... I have to send it as a mail to [EMAIL PROTECTED], then it works... If I click on the thread and try to "Reply to Group", it doesn't work !!! We always send the mail to [EMAIL PROTECTED], and not using "reply to group" function,I thi

[PHP] Re: Help please!

2003-06-25 Thread Nadim Attari
> hmm, well this post is here twice. so it works better than you thought? ;-) Well it doesn't... I have to send it as a mail to [EMAIL PROTECTED], then it works... If I click on the thread and try to "Reply to Group", it doesn't work !!! Anyway I can send my post now... and special thanks goes t

[PHP] Re: Help please!

2003-06-25 Thread sven
hmm, well this post is here twice. so it works better than you thought? ;-) Nadim Attari wrote: > Hi php-general, > > I have subscribed to news://news.php.net/php.general. But when I post > something (i'm using Outlook Express), it seems that the post is > sent; but in fact it isn't and so I don't

[PHP] Re: help please was: openssl php 4.3.1

2003-03-27 Thread Peter Clarke
Kalin Mintchev wrote: here is a real example: $fp = fopen ("http://store.el.net/index.html";, "r"); while (!feof($fp)) { echo fgets ($fp,4096); } this works fine... if you try it with https you'll get an error - file not found from php I've just tried with https and it works fine. Are y

[PHP] Re: help please

2003-02-25 Thread R'twick Niceorgaw
Please don't multi post. How you getting the $ToName $FirstName etc fields ? Are they submitted via a form? If so, check the register_globals setting on the server where it is not working. You need to set it on or use $_POST /$_GET variables. HTH R'twick "Bionicegg" <[EMAIL PROTECTED]> wrote in m

RE: [PHP] Re: Help please: Unable to get $_POST["variable"]; to work in a form.

2002-12-11 Thread Ford, Mike [LSS]
> - Original Message - > From: "Victor" <[EMAIL PROTECTED]> > To: "'Rick Emery'" <[EMAIL PROTECTED]> > Sent: Tuesday, December 10, 2002 1:49 PM > Subject: RE: [PHP] Re: Help please: Unable to get > $_POST["variable"];

[PHP] Re: Help Please

2002-12-10 Thread SpiderWebb
Thanks will try, Ill keep you all posted "David Eisenhart" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I can think of a couple of ways to tackle this: > > 1) The purest way is to do with your database design - a typical order > processing database will contai

Re: [PHP] Re: Help please: Unable to get $_POST["variable"]; to work in a form.

2002-12-10 Thread Rick Emery
MAIL PROTECTED]> Sent: Tuesday, December 10, 2002 1:49 PM Subject: RE: [PHP] Re: Help please: Unable to get $_POST["variable"]; to work in a form. Why are you using $_POST[""]? I thought you had to use $_POST['']. I always use '' instead of "" a

Fw: [PHP] Re: Help please: Unable to get $_POST["variable"]; to work in a form.

2002-12-10 Thread Rick Emery
Tuesday, December 10, 2002 12:54 PM Subject: Re: [PHP] Re: Help please: Unable to get $_POST["variable"]; to work in a form. I have corrected the typo and had hoped this was a simple solution, yet $_POST still doesn't work. Any ideas? "Craig Thomas" <[EMAIL PROTECTED

Re: [PHP] Re: Help please: Unable to get $_POST["variable"]; to work in a form.

2002-12-10 Thread David Scott
vars are in the http request, but > $_POST[""] contains nothing as the other poster noted: mehtod="post" > > >>-Original Message- > >>From: David Scott [mailto:[EMAIL PROTECTED]] > >>Sent: Tuesday, December 10, 2002 1:20 PM > >>To: [EMAI

RE: [PHP] Re: Help please: Unable to get $_POST["variable"]; to work in a form.

2002-12-10 Thread Craig Thomas
, 2002 1:20 PM >>To: [EMAIL PROTECTED] >>Subject: [PHP] Re: Help please: Unable to get $_POST["variable"]; to >>work in a form. >> >> >>Using $_REQUEST["variable"] causes the script to work. >>Why is this? And, why can I not use $_POST? &

[PHP] Re: Help please: Unable to get $_POST["variable"]; to work in a form.

2002-12-10 Thread David Scott
Using $_REQUEST["variable"] causes the script to work. Why is this? And, why can I not use $_POST? "David Scott" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I am going through the introductory tutorial on http://www.php.net/ and am > stuck on this page: > ht

[PHP] Re: Help please: Unable to get $_POST["variable"]; to work in a form.

2002-12-10 Thread Rodney Green
the word METHOD is incorrectly spelled. This is the exact code in the HTML file: PHP Form Example Your name: Your age: -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Help please: Unable to get $_POST["variable"]; to work in a form.

2002-12-10 Thread David Scott
This is the exact code in the HTML file: PHP Form Example Your name: Your age: I believe that is using the method POST. If there is something wrong in the HTML file, or if you have any other suggestions, then please let me know. "Hacook" <[EMAIL PROTECTED]> wrote in message [EM

[PHP] Re: Help please: Unable to get $_POST["variable"]; to work in a form.

2002-12-10 Thread hacook
Make sure your form is sent through the method="POST" "David Scott" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > I am going through the introductory tutorial on http://www.php.net/ and am > stuck on this page: > http://www.php.net/manual/en/tutorial.forms.php > > I have

[PHP] Re: Help Please

2002-12-10 Thread David Eisenhart
I can think of a couple of ways to tackle this: 1) The purest way is to do with your database design - a typical order processing database will contain a table for products, a table for customers, a table for orders, a table for order lines and so on ... If this is implemented correctly (ie the ta

[PHP] Re: Help please

2002-08-15 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Hello; > > I have a Mandrake 8.2 machine that I'm trying to get a php webmail > application running on. Apache is running, php is installed, and when I > attempt to view/use index.php my browser offers to download "index.php" > for me.

[PHP] Re: Help please

2002-08-15 Thread Sebastian Tomasino
PHP is installed, but are you sure that is loaded by apache?? look the httpf.conf (i have slack but usually is in /etc/apache or /etc/apache2 depends of the version) for a line like this: Include /etc/apache2/mod_php.conf be sure than that line is uncommented. if not, uncomment it and restart ap

[PHP] Re: Help please!

2002-07-02 Thread Richard Lynch
>Hello, > I have a PHP script which gets data from a MySQL database and >returns an image. So returns the image of >id 3 from the database. What I really want is to state width is 100 and >height is 100 for example so I do not have to downlaod the entire >picture and specify the width and height

[PHP] Re: Help Please (clarification)

2002-01-05 Thread Phillip Oertel
Phillip Oertel wrote: > line 29: mysql_query('$SQL') > will send the following query to your db: > > $SQL --> it sends exactly this string instead of the content of your variable $SQL, which contains the real query. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

[PHP] Re: Help Please

2002-01-05 Thread Phillip Oertel
line 29: mysql_query('$SQL') will send the following query to your db: $SQL i know of no db that understands that ;-) everything in single quotes is NOT parsed by php. here, use double quotes, or better, none at all. hope it works now, phil. -- PHP General Mailing List (http://www.php.net/

[PHP] Re: help please Sybase Result Paging.

2001-10-02 Thread Richard Lynch
You probably need to use a "cursor" -- Check out Sybase docs for how they work. -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.ht

RE: [PHP] RE: Help Please (DISREGARD THIS)

2001-07-02 Thread scott [gts]
that last email accidentally got sent to the wrong list... thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] RE: Help Please.

2001-07-02 Thread scott [gts]
or you could output the raw contents of the file after sending the appropriate headers... albeit, a simple redirect is much easier :) > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of > Gonzalo Quan > Sent: Monday, July 02, 2001 4:42 AM > To: Syed An