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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. cocoadev

    I want to do a query like this, but

    I want to do a query like this, but mysql doesn't want to know... SELECT size.sizes FROM size, details WHERE details.productID = (SELECT details.productID FROM product, details WHERE product.combocode = 5 AND product.productID = details.productID) AND (size.sizeID = details.sizeID)...
  2. cocoadev

    mySQL -> PHP -> XML very confusing!

    incidently, am i making a mountain out of a molehill here? surely there an easier way to output xml?????? I am a newbie, forgive me.
  3. cocoadev

    mySQL -> PHP -> XML very confusing!

    I have sorted it out, it was simple... function listRow($row){   foreach ($row as $key => $value) {     $hold = strtoupper(&quot;<$key>&quot;);     $hold .= $value;     $hold .= strtoupper(&quot;</$key>&quot;).&quot;\n&quot;;   echo $hold;  }     } ?> instead of... function listRow($row){...
  4. cocoadev

    mySQL -&gt; PHP -&gt; XML very confusing!

    any idea why this behaves unexpectedly????... <? $sHost = &quot;localhost&quot;; $sUser = &quot;*****&quot;; $sPass = &quot;*****&quot;; mysql_connect($sHost,$sUser,$sPass); mysql_select_db(&quot;*****&quot;); $combined =...

Part and Inventory Search

Back
Top