Jump to content

Corona4456

Members
  • Posts

    244
  • Joined

  • Last visited

    Never

About Corona4456

  • Birthday 09/12/1980

Contact Methods

  • AIM
    Corona4456
  • MSN
    robertsaenz@hotmail.com
  • Website URL
    http://www.coronamatrix.org
  • Yahoo
    Corona4456

Profile Information

  • Gender
    Male
  • Location
    El Paso, TX

Corona4456's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. the only way I can think of is if the form you are submitting has the item's fields in it and I'm assuming item is an object or array? right? function myFunc(item){ cbsel(item); document.test.field = item.field // or item[0] ... document.test.submit(); }
  2. hmm... try this in a php file: <?php phpinfo(); ?> Does that show anything? If so is that similar to what you see on your remote server?
  3. I think you are going to have to give more information. I'm not familiar with any plug-in named "sysinfo". I'm unsure as to what system information it is grabbing.
  4. You'll have to use Javascript for that.
  5. I'm sure you can just modify the scripts to NOT go in random order .
  6. Yes. According to the documentation: http://pear.php.net/package/DB/docs/1.7.11/DB/DB_result.html#methodfetchInto
  7. <?php $navigationSql = "SELECT * FROM nav"; $navResult =& $db->query($navigationSql); while ($navResult->fetchInto($nav)){ $navigation .= "<a href=\"$nav[2]\" target=\"$nav[3]\" title=\"$nav[1]\">$nav[1]</a><br />"; } echo $navigation; ?>
  8. Their API doc is an excellent resource. As for development I recommend Eclipse. That's all I use . The Java forums are excellent for finding solutions to your problems or you can go to Google groups and find a Java group there to help you out with any problem you may have. For any Swing type stuff feel free to send me a message (GUI's are my specialty... well kinda... if I don't know it then I'll find someone who does ).
  9. Ok... so the header and config site name are found here: <h1 id="header" onclick="location.href='<?php echo $mosConfig_live_site;?>/';" style="cursor: pointer;"> <a href="<?php echo $mosConfig_live_site;?>/"><?php echo $mosConfig_sitename; ?></a></h1> and banner is here: <?php if (mosCountModules('banner') >= 1) { ?> <!-- start banner. --> <div id="banner"> <?php mosLoadModules('banner'); ?> </div> <!-- end banner. --> <?php } ?>
  10. what audiokiwi did should work just fine.
×
×
  • 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.