Selling Strong freelancer ready to code websites and software ! Cheap and Clean !

Discussion in 'Programming' started by Wav3, Oct 6, 2012.

  1. #1
    Strong coder here

    I will be short. If anyone have any question, just ask me.

    About me

    Country : Romania (GMT +2)
    Age : 22
    Languages : Romanian, English (Advanced level)

    I code any project that require any of the programming languages mentioned below.

    Experience

    - PHP : 4 years
    - MySQL : 4 years
    - HTML : 4 years
    - CSS : 4 years
    - Visual Basic 6 : 6 years

    I accept any projects; from sample contact forms or one-page websites to full websites. Also, I code desktop software (for WinXP, Vista and 7) using Visual Basic 6.

    Short portfolio

    Download portal for scripts, websites and software + online file scanner : http://crownsoftwares.com/
    Presentation page for one of my main software : http://www.tampkeylogger.com/
    Counter Strike server status script : http://www.bhss.uv.ro/csss
    Traffic exchange script : http://md5.net78.net/te/
    Page rank checker script : http://md5.net78.net/pr/
    800notes clone : http://fast-sms.zxq.net/

    This is a short list with few of my last projects.

    I can work part-time (paid per hour of work), full-time (paid per hour of work) or project based (paid per project after finishing it if is small one, or 50% before and 50% after if is a medium or big one).

    Pricing

    Hourly rate : 10 $ (USD)

    - Part-time : <=4 hours / day
    - Full-time : <=8 hours / day

    Payments via

    - PayPal
    - Liberty Reserved

    The hourly rate could be negotiated. It depends by the complexity of the project and by your time frame.
    Also, the rates for medium and big projects could be negotiated.

    Yahoo! ID : wav3_dev
    Google Talk : wav3ee
    Skype : wav3ee

    Please do not contact me for other languages like : wordpress, facebook apps, android apps, flash, photoshop (design), joomla, java, c++, etc.


    Thank you
     
    Wav3, Oct 6, 2012 IP
  2. Donzy

    Donzy Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #2
    I have a few websites and need a number of minor fixes on them. Also need to re-install website/mysql software no longer supported developer (I do hold a valid license for that software). Are these the kind of things you could work on?

    Here is a typical small php fix I need to do now... I want to combine these into one search query since the search "text" entry would be the same in each.

    // Short
    echo userform ($lang['Search_Keyword'], '<input type="text" size="45" name="directions" maxlength="50">');
    //Long
    echo userform ($lang['Search_Keyword'], '<input type="text" size="45" name="description" maxlength="50">');
     
    Last edited: Oct 6, 2012
    Donzy, Oct 6, 2012 IP
  3. Wav3

    Wav3 Well-Known Member

    Messages:
    247
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    This is your first post (from this account).
    Yes, I could work with these kind of things.

    I don't understand how you want to combine these 2 lines. Provide more details.
     
    Wav3, Oct 6, 2012 IP
  4. 3roken

    3roken Active Member

    Messages:
    534
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    80
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #4
    3roken, Oct 6, 2012 IP
  5. Donzy

    Donzy Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #5
    Example use:

    Let's say that I want to search for the word extra in both the "directions" and the "descriptions" columns of the mysql database by entering the word extra into just one search box.

    The way if works now is that I enter extra into the first search box and get the result if that word is in the "directions" column of the db, then I enter extra into the 2nd box and get results if the word extra is in the "description" box.

    It's clumsy to have to do 2 searches when one search could look into both columns.
     
    Donzy, Oct 6, 2012 IP
  6. Donzy

    Donzy Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #6
    I think of it as pseudo code:

    "search "directions" and search "description" for the word extra ."

    If extra is found in either the "directions" or the "description" column (or both columns) then the search result and the system will report the "id" or "id's" of the entry line(s) where either of both matches are found.

    search.jpg This is part of the data for "id" 630 as example
     
    Donzy, Oct 6, 2012 IP
  7. Wav3

    Wav3 Well-Known Member

    Messages:
    247
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #7
    Ok, I got it now.

    I don't know how your function userform works but the MySQL query can look like this ("can" because isn't the only way)

    
    $query = mysql_query("SELECT * FROM table WHERE directions='extra' or description='extra'") or die (mysql_error());
    
    Code (markup):
    or, assuming that your function have the role that I have in my mind, you can try :

    
    $directions = userform ($lang['Search_Keyword'], '<input type="text" size="45" name="directions" maxlength="50">');
    If (isSet($directions))
    {
    echo $directions;
    }
    else
    {
    echo userform ($lang['Search_Keyword'], '<input type="text" size="45" name="description" maxlength="50">');
    }
    
    Code (markup):
    EDIT : Yes, I can help you with that. For complete work, let's take this discussion to PM.
     
    Wav3, Oct 6, 2012 IP
  8. Donzy

    Donzy Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #8
    Before PM

    Here is what the entry screen look like now.


    2-search.jpg


    I just want to enter whatever the search request once instead of twice.
     
    Donzy, Oct 6, 2012 IP
  9. Wav3

    Wav3 Well-Known Member

    Messages:
    247
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #9
    Yes, I understud that from your second post. It's very possible to do that.
     
    Wav3, Oct 6, 2012 IP
  10. Donzy

    Donzy Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #10
    OK, will get back later today or tomorrow, in the middle of "big backup" now and want to finish that 1st.

    Thanks for you help,

    Donzy
     
    Donzy, Oct 6, 2012 IP
  11. Bogdann

    Bogdann Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    1
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #11
    Hello,
    I need someone that is able to create addons and modify existing ptc script. I have purchased full rights for this script so i can make new brand and sell it.
    Script that i am using is auroragpt 4.0.8. I will need an average of 1 or 2 addons per month.
    Please let me know if you have time for this type of job so we can talk about details.

    Regards,
    Bogdan
     
    Bogdann, Oct 8, 2012 IP
  12. Wav3

    Wav3 Well-Known Member

    Messages:
    247
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #12
    All requests has been took to PM.
    I still have some free time.
     
    Wav3, Oct 19, 2012 IP