php-general Digest 23 Sep 2013 04:49:40 -0000 Issue 8373

Topics (messages 322144 through 322148):

Re: jquery fill select option value
        322144 by: Tedd Sperling
        322145 by: Jim Giner
        322146 by: Tedd Sperling

Re: Friday's Question
        322147 by: Jonesy

Re: Apache's PHP handlers
        322148 by: Tamara Temple

Administrivia:

To subscribe to the digest, e-mail:
        php-general-digest-subscr...@lists.php.net

To unsubscribe from the digest, e-mail:
        php-general-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
        php-gene...@lists.php.net


----------------------------------------------------------------------
--- Begin Message ---
On Sep 21, 2013, at 9:06 PM, iccsi <inu...@gmail.com> wrote:
> <select id="mark" name="mark">
> <option value="">--</option>
> <option value="bmw">BMW</option>
> <option value="audi">Audi</option>
> </select>
> 
> I use above code to have my select drop down on the form and would like to 
> use jQuery to fill option value on change event.
> I would like know is it possible to do, if yes, any hint or example code at 
> server site is appreciated,
> 
> Your help and information is great appreciated,

While jQuery is great, you don't need jQuery for this -- a simple AJAX routine 
will do what you want. Here's an example:

http://php1.net/a/zipcode-states/

The ajax routine is there -- you can copy it.

The HTML is there -- you can copy that too.

The php script is a simple script that is triggered by an ajax script 
(triggered by the user via onchange() ) that then pulls whatever data is needed 
to populate the remaining option controls via a GET.

HTH's 

tedd

_______________
tedd sperling
tedd.sperl...@gmail.com



--- End Message ---
--- Begin Message ---
On 9/22/2013 12:04 PM, Tedd Sperling wrote:
On Sep 21, 2013, at 9:06 PM, iccsi <inu...@gmail.com> wrote:
<select id="mark" name="mark">
<option value="">--</option>
<option value="bmw">BMW</option>
<option value="audi">Audi</option>
</select>

I use above code to have my select drop down on the form and would like to use 
jQuery to fill option value on change event.
I would like know is it possible to do, if yes, any hint or example code at 
server site is appreciated,

Your help and information is great appreciated,

While jQuery is great, you don't need jQuery for this -- a simple AJAX routine 
will do what you want. Here's an example:

http://php1.net/a/zipcode-states/

The ajax routine is there -- you can copy it.

The HTML is there -- you can copy that too.

The php script is a simple script that is triggered by an ajax script 
(triggered by the user via onchange() ) that then pulls whatever data is needed 
to populate the remaining option controls via a GET.

HTH's

tedd

_______________
tedd sperling
tedd.sperl...@gmail.com


OH!!! So you want to populate another(!) select box after the user makes his first selection. You didn't say that.

Yes - ajax call would be just what you want to do.

--- End Message ---
--- Begin Message ---
On Sep 22, 2013, at 12:47 PM, Jim Giner <jim.gi...@albanyhandball.com> wrote:

> On 9/22/2013 12:04 PM, Tedd Sperling wrote:
>> On Sep 21, 2013, at 9:06 PM, iccsi <inu...@gmail.com> wrote:
>>> <select id="mark" name="mark">
>>> <option value="">--</option>
>>> <option value="bmw">BMW</option>
>>> <option value="audi">Audi</option>
>>> </select>
>>> 
>>> I use above code to have my select drop down on the form and would like to 
>>> use jQuery to fill option value on change event.
>>> I would like know is it possible to do, if yes, any hint or example code at 
>>> server site is appreciated,
>>> 
>>> Your help and information is great appreciated,
>> 
>> While jQuery is great, you don't need jQuery for this -- a simple AJAX 
>> routine will do what you want. Here's an example:
>> 
>> http://php1.net/a/zipcode-states/
>> 
>> The ajax routine is there -- you can copy it.
>> 
>> The HTML is there -- you can copy that too.
>> 
>> The php script is a simple script that is triggered by an ajax script 
>> (triggered by the user via onchange() ) that then pulls whatever data is 
>> needed to populate the remaining option controls via a GET.
>> 
>> HTH's
>> 
>> tedd
>> 
>> 
> OH!!! So you want to populate another(!) select box after the user makes his 
> first selection.  You didn't say that.


Well... not meaning to disagree -- but he did say:

> I use above code to have my select drop down on the form and would like to 
> use jQuery to fill option value on change event.


I took that to mean fill "another" option control. Why would one want to change 
the values of the current one?

tedd

_______________
tedd sperling
tedd.sperl...@gmail.com


--- End Message ---
--- Begin Message ---
On Fri, 20 Sep 2013 12:51:49 -0400, Tedd Sperling wrote:
>
> Do you use a Mousepad?

Age: 70
Mousepad: No.  Been using trackballs since 1993...
(No room for a mousepad on _my_ desktop!)


--- End Message ---
--- Begin Message ---
On Sep 19, 2013, at 9:14 AM, Arno Kuhl <a...@dotcontent.net> wrote:

> Arno: If you can request that file using a web browser, and it gets executed
> as PHP on your server then there is an error in the Apache configuration.
> 
> Easy test: create a file in a text editor containing some PHP (<?php
> phpinfo(); ?> would be enough) and upload it to the www root of your site
> and name it test.pgif. Then hit http://www.yourdomain.com/test.pgif in your
> browser. If you see the PHP code or an error then you're fine. If you see
> PHP's info page then you need to change web host as quickly as possible. I
> don't care if they fix it - the fact their server was configured to do this
> by default is enough for me to never trust them again.
> 
> -Stuart
> --
> 
> Thanks Stuart. I just tried it now, test.php.pgif displayed the info while
> test.xyz.pgif returned the content, confirming the problem. My service
> provider finally conceded the problem is on their side and are looking for
> an urgent fix, much too complicated to consider moving service providers in
> the short term.
> 
> As a side note, the sp said the issue is new and coincided with an upgrade
> to fastcgi recently, I wonder if the hacker was exploiting a known issue
> with that scenario?
> 
> Cheers
> Arno
> 

GoDaddy's default plesk-generated configuration for FastCGI-served PHP files 
only looked to see if the file contained ".php" somewhere on it's path - i.e. 
it would happily execute 'malicilous.php.txt' as php code, even something 
ridiculous like 'malware.phpnoreallyiwantthistorun'.


--- End Message ---

Reply via email to