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 TouchToneTommy 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: *

  • Users: dongbamage
  • Content: Threads
  • Order by date
  1. dongbamage

    Script works on its own but not in my page

    Hi peeps, I made a little script that calls photo's from my MySQL db, then passes them from a PHP array to JS. The problem I'm having is although it works if run directly, when i add it to my mainpage, it doesn't work... Anyone got any ideas? Here's my code.. <? include_once $arraycount=0...
  2. dongbamage

    Warning: fread(): SSL: fatal protocol

    Hi guys I'm trying to use PEAR HTTP:Request, which requires Socket.php, URL.php and some other bits and pieces. The problem I'm having is when I run my code I get the following error: Warning: fread(): SSL: fatal protocol error in /files/home3/munchexpress/Includes/Net/Socket.php on line 262...
  3. dongbamage

    Unique Order Num in multiple DB columns

    Hi guys, heres my problem: I have a shop system that must (for needs of payment) insert a seperate row in my orders table for each product and the quantity of that particular product ordered. however a cart can contain different items with differing quantities. So I have an order table that...
  4. dongbamage

    variable name in a for statement...

    hey guys is it valid to use a variable name in a for statement like so: for ($i=0;$i<=$counter;i++) { echo yeehaa; } I'm getting Parse error: parse error, unexpected T_INC, expecting ')'
  5. dongbamage

    chained listboxes

    I would like a category listbox which is populated from my db, when I select a category I would like my subcategory lisbox to be dynamically populated from my db based upon which category was chosen. I then would like my subsubcategory listbox to be dynamically populated from my db based upon...
  6. dongbamage

    using php to make css dynamic...

    is this possible? <? $d=10; echo ('<div align="center" style="width:10%; border-style:dashed; left:' .$d .'%; ">'); </div> $d++; ?>
  7. dongbamage

    Pass a php array into Javascript

    Hey guys, I'm having trouble passing a php array into a javascript array. I am trying to use implode to pass the php array, but its not working properly. var ads=new adArray("<?=implode(",", $array); ?>"); Can anyone see where I'm going wrong? Here is my code: <? include...
  8. dongbamage

    moving background as table background

    Hi there I have a moving javascript background, that I would like to be a background for just a table, rather than my entire background. I can choose to give it absolute co-ordinates, but this then messes up with different resoutions, also if I do it like this my other javascripts do not...

Part and Inventory Search

Back
Top