Results 1 to 1 of 1

Thread: Add city and occupation search to Admin Panel search

  1. #1

    Join Date
    Feb 2006
    Posts
    92

    Default Add city and occupation search to Admin Panel search

    This works on AE Dating 4.1 Patch 2

    Remember to backup all files first

    In Admin/profiles.php, find:

    PHP Code:
    if (strlen($search))
    {
        if (
    $_GET[s_mail])
        
    $email_part " AND `Email` LIKE '%$search%' ";
        elseif (
    $_GET[s_nickname])
        
    $email_part " AND `NickName` LIKE '%$search%' ";
        elseif (
    $_GET[s_id]) 
            
    $email_part " AND `ID` = '$search' "
    Below the last line, add in:

    PHP Code:
        elseif ($_GET[s_city])
        
    $email_part " AND `City` LIKE '%$search%' ";
        elseif (
    $_GET[s_occupation])
        
    $email_part " AND `Occupation` LIKE '%$search%' "
    Find the following:

    PHP Code:
    <tr>
        <
    td align=right> <input class=text name='s_mail' type=submit value="Search by Email"> </td>
        <
    td align=center> <input class=text name='s_nickname' type=submit value="Search by Nickname"> </td>
        <
    td align=left> <input class=text name='s_id' type=submit value="Search by ID"> </td>
    </
    tr
    Below the last </tr> tag, paste the following:
    PHP Code:
    <tr>
        <
    td align=center> <input class=text name='s_city' type=submit value="City"> </td>
        <
    td align=left> <input class=text name='s_occupation' type=submit value="Occupation"> </td>
    </
    tr
    This can be modified to allow for additional fields to be searched for, should need be.
    Last edited by lax33; 10-11-2006 at 09:05 PM.
    Aedating 4.1 Patch 2
    Dolphin 5.3

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Change search results City, Country to City, State?
    By bboy131 in forum Dolphin General Discussion v6.00 and above
    Replies: 1
    Last Post: 04-20-2009, 06:23 AM
  2. City Search Focus Lost (type r)
    By uandus in forum Bugs and Fixes
    Replies: 8
    Last Post: 09-07-2006, 09:37 AM
  3. Country / state / city Mod Now for Search!!!
    By ijk in forum Free Mod Exchange
    Replies: 3
    Last Post: 06-18-2006, 05:16 AM
  4. search by city
    By Yair Czitrom in forum General Troubleshooting
    Replies: 5
    Last Post: 07-09-2005, 08:52 AM
  5. search by city
    By Smoge in forum Wishlist
    Replies: 0
    Last Post: 03-03-2005, 03:07 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •