Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by McKaulick

  1. McKaulick

    Refreshing a div.

    Thanks, works well with the IFRAME. :)
  2. McKaulick

    Refreshing a div.

    Hello, I have a div on my page that looks like that: <div id="rightBg"> <? include("stat.php"); ?> </div> I want to refresh this DIV. This does not work: <!-- <javascript> --> function refreshDiv(myDiv) { //alert('I see this'); curDiv = document.getElementById(divID)...
  3. McKaulick

    Query working on MySql Querier not on PHP

    Hey thanks guys for you help... I found the problem, I am actually building the query in a function and I was just forgetting to return the result. :-s Thanks anyway... Soo tired, I better stop now. Thanks :)
  4. McKaulick

    Query working on MySql Querier not on PHP

    Hello Vacunita, It actually gives the same error message when I add the or die. Any thoughts? Thanks
  5. McKaulick

    Query working on MySql Querier not on PHP

    Can anyone tell me what in this query could create a PHP bug but good when I execute the query on SQL Yog. Thanks all for your help. $myQuery = "SELECT merchants.PK_MERCHANTS_UID AS bob,merchants.MERCHANTS_NAME as bob1,discounts.PK_DISCOUNTS_UID as bob2,discounts.DISCOUNTS_DESC as bob3 FROM...
  6. McKaulick

    Adding one year to a date

    Thank you guys for your answer. Take care!
  7. McKaulick

    Adding one year to a date

    Hello everyone, I want to add one year to a date with this format: "2007-12-13" so I can say if today's date is smaller than the one on the database + 1 year. Can someone has a way to add it. When I print $todayDate+1; the result = just the year "2008" but not "2008-12-13". PHP has lots of...
  8. McKaulick

    Installing curl on windows

    Hello everyone, I get this error when I want to run this script: Fatal error: Call to undefined function: curl_version() in c:\program files\easyphp1-8\www\boulangerie\test.php on line 3 Here's the script: <? //include("PostGateway.function"); echo curl_version()...
  9. McKaulick

    Finding quotes in a string

    Awesome, thanks!
  10. McKaulick

    Finding quotes in a string

    Hello, I have a string coming from the database, and I want to verify if the string has a double quotes (") at the first position of the string and the last position of the string. I tried many things, but nothing works like this! $sv['SEARCH_TEXT'] is a field from the database and has doubles...
  11. McKaulick

    Problem with join query - One step futher.

    Problem doind a query - 3 tables. Hello everyone, first of all, thanks to r937 for answering my last question. Here's the deal, I have table call ContactSkill with 2 fields 1)Contact_key 2)Skill_Key And another one call Search_Skill with 2 fields 1) Skill_Key 2) Search_Key I want to...
  12. McKaulick

    Problem doind a query - Might be a bad join

    Thanks you so much r937 it works great! You are the man!
  13. McKaulick

    Problem doind a query - Might be a bad join

    Problem doind a query: Here's the deal, I have table call ContactSkill with 2 fields 1)Contact_key 2)Skill_Key And another one call Search_Skill with 2 fields 1) Skill_Key 2) Search_Key I want to retrive all contact_key that have all the skills selected from a given search_key. Right know...
  14. McKaulick

    ListView in a single column

    Thank you, but actually, just found out that the view property needed to be List. So my code was good. Thanks anyway! :)
  15. McKaulick

    ListView in a single column

    Hello, I have a ListView that display the content of a folder. In this folder, I have 6 files. The files are beign displayed 3 per lines and I have 2 lines, I would like to have an Item per line and 6 lines (One column). I tried many things, but for some reason, it does not work. Here's the...

Part and Inventory Search

Back
Top