Recent content by freecrm

  1. freecrm

    High Quality Image Search Engine

    It depends on the page it is crawling - the bot will loop through multiple pages, but some pages do not allow a crawl, so it will return an error and move on to the next page. If you leave it running, it will automatically switch to another page and crawl that. Similarly, some images will be...
  2. freecrm

    High Quality Image Search Engine

    My previous free host deleted my site and DB. I have now hosted pro at www.qualityimagesearch.com Feedback welcomed. When you ask how I am achieving my web presence, what exactly do you mean? SEO? Backlinks? Social Linking? Adwords or what?
  3. freecrm

    Ajax (MySQL) return value to form text area

    Thanks for the heads up on jquery, but in order for me to understand JS and ajax better, I really need to understadn this. Fortunately, after a lot of reading up, I have found the solution. var result_array = xmlhttp.responseText.split("[|]")...
  4. freecrm

    Ajax (MySQL) return value to form text area

    Thanks for the pointers here. Array system it is then! I have amended the php to output an array-type string echo $ajaxrow['basic_info'].":".$ajaxrow['detailed_info']; and then changed the js to the following function stateChanged() { if (xmlhttp.readyState==4) { var...
  5. freecrm

    Ajax (MySQL) return value to form text area

    On statechange, neither script appears to function, having no effect on either id basic info or detailed info. OK... that sort of makes sense.. bearing in mind I read JS like its in martian! :) I tried renaming the "xmlhttp" variable to "xmlhttp1" and "xmlhttp2" for each case, but this...
  6. freecrm

    Ajax (MySQL) return value to form text area

    OK here goes.. JS.. <script type="text/javascript"> var xmlhttp; function GetBasicInfo(str) { xmlhttp=GetXmlHttpObject(); if (xmlhttp==null) { alert ("Browser does not support HTTP Request"); return; } var url="/spec/ajax/ajax_basic_info.php"...
  7. freecrm

    Ajax (MySQL) return value to form text area

    Duh - that WAS simple - thanks To complicate matters slightly, I now need to append several fields called by the onchange event. I thought this was going to be simple purely by adding another action to the onchange command i.e. onchange="GetInfo(this.value); GetDetail(this.value);"...
  8. freecrm

    Ajax (MySQL) return value to form text area

    This may be simple, it may not... This is the process 1) Simple form 2) Dynamically generated (php) select menu with javascript onchange behaviour 3) onchange behaviour sends value currently in menu to a php page 2 4) page 2 creates mysql_result from query based on $GET value from main...
  9. freecrm

    Multi-line form <select> option?

    Page does not exist.. Anyhoo, I managed to get round the problem with an ajax call - select a short version and the rest appears as if by magic! Thanks mission - as usual very helpful. Now if only I could find out what happened to my databases..... :(
  10. freecrm

    MySQL Server down

    Thanks for responding. I have no databases! There is nothing showing in myphpadmin or mySQL databases - it just says - there are no databases associated with your account!!!!! So where have they gone then? I had about 9,000 contact records for various users and they have vanished!! So...
  11. freecrm

    Multi-line form <select> option?

    OK - I have no idea how to create a widget so I guess that option is out. Thanks for telling me about it anyway.
  12. freecrm

    MySQL Server down

    Hi I have posted here 3 times - the last without comment. My MySQL DB has been out of service since 17th March!!! The last time I posted, I asked that admin did not close the thread - they did. What do I have to do to get an answer? And yes I have read the Corey thread - all I want is some...
  13. freecrm

    Multi-line form <select> option?

    Thanks for the response. I am simply trying to mimic the text-overflow: wrap; function in css, so that, if the list/menu is fixed at say 650px, any row contents that exceed the physical boundary of the select box will wrap to nl. Because the list is generated from a longtext field, it may...
  14. freecrm

    Multi-line form <select> option?

    This isn't as simple as the title suggests. I know you can have multiple options, as successive lines BUT... I have a dynamically generated menu from a longtext database field. I don't want the menu to extend beyond the limit of my wrapper, so I set style="width:650px;". However, this...
  15. freecrm

    MySQL Server still... still...stilll down!!!!

    OMG - My MySQL server went down on the 17th March. Since then I have posted a few queries here in the hope that someone would know what is going on. I have read the entire Corey thread about the move, but I was under the impression that cossacks was done?? I thought I was on Cossacks and not...
Top