Jump to content

adrianqx

New Members
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

adrianqx's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. hmm not sure its quite was i was looking for, do u know when u get into ur pay pal account and you can check your transactions and topup ? im looking for something similar to that. thanks though for replying
  2. hi all i have aclient who wants a payment gateway site ,something similar to this (pesagate.com) ,it just like paypal where one can check there balance ,top upthere balance and generally shop and pay using this. are there any secure open source scripts out there that do this or is it easier if a tried coding from scratch , im not exactly a pro ,and im not sure about the scopreof work involved. please advise ,thanks all
  3. Hi all ive been web design for some time now, im anything but an expert when it comes to php, anyway i got this job todesign a site where users can: 1, upload there office artworks eg business cards ,brochures, etc 2, Be able to login and order printing by selecting eg business card, number of cards, paper type ,then designated printer shops. and order. like i said ive been using joomla for all my sites and im now just trying to go deep into php, ive looked for an open source code to do this but no luck . is this do able or have i just set myself out to failure? any scripts out there to save my hide as i expan my php knowledge
  4. Hi all ive been web design for some time now, im anything but an expert when it comes to php, anyway i got this job todesign a site where users can: 1, upload there office artworks eg business cards ,brochures, etc 2, Be able to login and order printing by selecting eg business card, number of cards, paper type ,then designated printer shops. and order. like i said ive been using joomla for all my sites and im now just trying to go deep into php, ive looked for an open source code to do this but no luck . is this do able or have i just set myself out to failure?
  5. Hi guys i had a problem with a dating site i was running and their help desk told me to do the following to my db to get rid of the error. Im not really good at this i have just used phpmyadmin to do the simplest of tasks .can anybody out there tell me how to go about this steps ,im pretty desparate ,when u give the instruction imagine ur giving them to homer so as much detail as possible please "Do following steps.. a) Export all your tables data. b) Create a sql file by exporting the table definitions only (i.e. avoid data export). c) Edit the sql file and remove coalition for any fields given. Make one coalition for all tables. (Try utf8) d) Drop tall tables from the osdate DB e) Create tables using sql file as modified in step ©. f) Import data from the exported file of step (a)" thanks any help is welcome
  6. Hi i will try it , can i do it in php instead fo java eg var nairobiArray = new Array(             'langata' = "langata.php"             'weslands'= "weslands.php" ); will this work ,so that when a user selects a nairobi in the firstdrop down it will display langata & westlands in the second drop down and when he selects langata it take him to such a url http://mysite.com/ index.php?option=com_content&task=view&id=18&Itemid=27 please
  7. Hi I think Uve got the idea, basically what it is ,there 2 drop down areas, the fisrt one shows towns eg, nairobi ,Mombasa,kampala,. When a user selects a town eg Nairobi ,it should list streets in the next drop down ,and in this drop down when a user selects a street it should take him to a particular page in the site. So far i have been able to make the town drop down display the streets using the following arrays ,my problem is making the street values eg "langata" take the user to a page when selected function ff_ktown_action(element, action) {     area = ff_getElementByName('karea');     lab  = ff_getElementByName('klab');     var nairobiArray = new Array(      // displays "nairobi" in the first drop down& when selected shows the values in the next drop down         'langata', 'weslands', 'umoja', 'kasarani'     );     var kisumuArray = new Array(         'city', 'kodiaga', 'rachwonyo', 'buda'     );     var mombasaArray = new Array(         'chuda', 'nyali', 'malindi', 'kwale'     ); i hope i have made it as clear as possible ,please help urgent ??? ??? ???
  8. Hi need some help here i made a drop downform ,and put some arrays to represent each of the dropdown values, what i need it to do is when one selects a value it redirects the user to a specified page on the site this is what i have so far but the redirection has me stamped help me  ??? ??? ???please function ff_ktown_action(element, action) {     area = ff_getElementByName('karea');     lab  = ff_getElementByName('klab');     var nairobiArray = new Array(         'langata', 'weslands', 'umoja', 'kasarani'     );     var kisumuArray = new Array(         'city', 'kodiaga', 'rachwonyo', 'buda'     );     var mombasaArray = new Array(         'chuda', 'nyali', 'malindi', 'kwale'     );       if (element.value == 'none') {         // drop countries         while (area.options.length > 0)             area.options[area.options.length-1] = null;     } else {         // get the matching array         var selectedArray = eval(element.value+'Array');         // drop supernumerous option         while (selectedArray.length < area.options.length-1)             area.options[area.options.length-1] = null;         // add the new options         area.options[0] = new Option('Select area', 'none', true, true);         for (var i=0; i < selectedArray.length; i++)             area.options[i+1] =                 new Option(selectedArray[i], selectedArray[i]);     } // if     // drop states     while (lab.options.length > 0)         lab.options[lab.options.length-1] = null; } // ff_ktown_action
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.