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 Chriss Miller 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 job357

  1. job357

    Do While

    Man that was really quick! Thanks this is exactly what I was looking for.
  2. job357

    Do While

    Greetings, consider the following: Inital = lstItem.Items.Count Do While pmintInital < 100 pmintInital += 1 lstOrder.Items.Add("lstItem.Items") Loop I am trying to assign the contents from one Listbox to another via a Do While statement. Thanks!
  3. job357

    Multi-Dimensional Arrays

    Here is the correction to my question: <?php $foo["travis"]["first"] = 90; $foo["travis"]["second"] = 91 ; $foo["wyndell"]["first"] = 92; $foo["wyndell"]["second"] = 93; foreach($foo as $outer_key => $single) { foreach($single as $inner_key => $value) { echo "\$foo[$outer][$inner]...
  4. job357

    Multi-Dimensional Arrays

    can someone help me understand the following: <? $foo["travis"]["first"]; $foo["travis"]["second"]; $foo["wyndell"]["first"]; $foo["wyndell"]["second"]; foreach($outer = 0; $outer < count($foo); $outer++) { foreach($outter as $inner => $value) { echo "\$foo[$outer][$inner] = $value<BR>"; } }...
  5. job357

    Binding

    Greetings everyone, can someone put me in the right direction of binding a network filesystem eg. \\foo\share\docs to a combobox, so that when selected the contents of "docs" will be listed? Thanks!
  6. job357

    Forms

    Thanks, this has put me on the right track!
  7. job357

    Forms

    I am trying to find a way to get around form pop ups all over the screen for a menu system I am trying to implement. As it stands, the user is prompt for user/pass, upon authentication; they can then enter the system, which is another form. The problem now is that the login form is on the...
  8. job357

    Proxy through Firewall

    Please help me solve a problem I having accessing a system from the inside with limited resources: firewall port:20509 (only hole to intranet) This is what I have configured that is not working DMX Proxy: ProxyPass /foo/ http://instanet:2059/foo/ ProxyPassReverse /foo/...
  9. job357

    Ant build.xml file

    Thanks!
  10. job357

    PHP Function Problem

    Ken, I am really new with PHP, that being said, why did I drop the '$' for the variable $favmovie and call it, "echo $_GET['favmovie'];" instead of like: echo $_GET['$favmovie']; Thanks.
  11. job357

    PHP Function Problem

    Thanks, this information has been very helpful!
  12. job357

    PHP Function Problem

    Greetings, I have installed PHP on Solaris 10 and now have problems following a tutorial, or at least my results aren't what the tutorial displays, the code is: movie1.php: <HTML> <HEAD> <TITLE>Find my Favorite Movie!</TITLE> </HEAD> <BODY> <?php echo "<a...
  13. job357

    Mounting usb drive

    Here is dmesg after rebooting: usbcore: registered new driver usbfs usbcore: registered new driver hub usb usb1: Product: UHCI Host Controller usb usb1: Manufacturer: Linux 2.6.5-7.111-default uhci_hcd usb usb1: SerialNumber: 0000:00:07.2 usb usb2: Product: UHCI Host Controller usb usb2...
  14. job357

    Mounting usb drive

    No i did not, should I rebooted with drive connected? Thanks
  15. job357

    Mounting usb drive

    Chacalinc- usb-storage module is already loaded: lsmod |grep -i usb "usbcore 103644 6 usb_storage" When i try and mount the device: mount /dev/sdc0 /mnt "mount: special device /dev/sdc0 does not exist" I even tried: mount /dev/sdc1 /mnt dmesg output for 'usb': usbcore...

Part and Inventory Search

Back
Top