6G Celicas Forums

Welcome Guest ( Log In | Register )

> Members Rides, Can't filter rides
post Jul 27, 2006 - 10:51 PM
+Quote Post
CelicaQT



Enthusiast
***
Joined Sep 29, '02
From Sterling Heights, Michigan
Currently Offline

Reputation: 0 (0%)




Is anyone else having this problem? confused.gif

I tried every which way to search whether it be "Advanced" search or the regular way and it keeps showing me ALL 1444 members rides.

I tried searching just my SN and same thing all 1444 members rides. Or I've searched, 1997, ST, Auto and same thing 1444 member rides. lol

Amy I not doing this correctly? Been a member for 4 yrs and this is the first time this has happened.

-Christee-
 
Start new topic
Replies
post Aug 3, 2006 - 3:44 PM
+Quote Post
tomazws



Enthusiast
*****
Joined Oct 30, '04
From So Cal
Currently Offline

Reputation: 13 (100%)




Confirm problem with multipart encryption and GET method.

Safari doesn't allow GET method for binary form. If it's a binary form, POST method is required. If GET method is required, the form cannot contain any binary data.

Test:
http://www.designrange.com/test/6gc/index.php

Source Code:
CODE
<b>Selected Year:</b><br />
<?php
    if (!empty($_GET["year"])) {
        echo $_GET["year"] . "<br />";
    } else {
        echo "None<br />";
    }
?>
<br />
<form name="form1" action="index.php" method="get" enctype="multipart/form-data">
    <b>Form Eaxmple 1</b><br />
    <br />
    <select name="year">
        <option value="">Please Select a Year</option>
        <option value="1999">1999</option>
        <option value="1998">1998</option>
        <option value="1997">1997</option>
        <option value="1996">1996</option>
        <option value="1995">1995</option>
        <option value="1994">1994</option>
    </select>
    <input name="submit" type="submit" value="Submit" />
</form>
<br />
<form name="form2" action="index.php" method="get">
    <b>Form Example 2</b><br />
    <br />
    <select name="year">
        <option value="">Please Select a Year</option>
        <option value="1999">1999</option>
        <option value="1998">1998</option>
        <option value="1997">1997</option>
        <option value="1996">1996</option>
        <option value="1995">1995</option>
        <option value="1994">1994</option>
    </select>
    <input name="submit" type="submit" value="Submit" />
</form>


--------------------

Posts in this topic


Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



Lo-Fi Version Time is now: September 1st, 2025 - 1:48 PM