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!

Search results for query: *

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

    Display selection from dropdown list?

    When I select an item from a dropdown box and submit. It works correctly, but then when the list is displayed again, it doesn't show what was selected, but rather, the first item in the list. So i.e. if "Select Item" is the first thing on the list. That's what you always see. Another example...
  2. JustKIDn

    Three tables, find the missing jobs - JOIN challenge?

    Here are the tables; tbl_people - pkey - primary key - dept - varchar - name - varchar etc... tbl_jobs - jkey - primary key - desc - varchar (job titles) tbl_job_link - lkey - primary key - ljkey - foreign key (ties with tbl_jobs.jkey) - lpkey -foreign key (ties with tbl_people.pkey)...
  3. JustKIDn

    Creating a personal query window - ideas?

    Hi all, I have an app that is simalar to an address book, but more. Sometimes I have a need to use phpMyAdmin to do a select query to find different groups of data. I thought it would be nice if I could create a little query window to type in my select statements. What I have so far works...
  4. JustKIDn

    Problem - TEXTAREA not working exactly right

    In one of my forms I use; <textarea name="ud_notes" rows=3 cols=33><? print "$notes"; ?></textarea> It works fine except, if it's an existing record, when you enter into the field, the cursor lands about 60 or 70 charactor spaces in from the beginning. How do I get it to start at the...
  5. JustKIDn

    Help with a simple compare please!

    I've searched forums and the net for too many hours and can't find the answer to this. This is one thing I've tried that seems like it should work. select pkey, name from tbl_1 where not exists (select * from tbl_2 where lpkey = pkey) lpkey from tbl_2 is a foreign key to pkey from tbl_1 I...
  6. JustKIDn

    Unwanted blue folder tasks bar on left - help!!!

    I somehow got the folder tasks menu(Like in folders, on the left) to show on the desktop. How do I get rid of it? Thanks! ____________________________ JustKIDn ____________________________ Families can be together forever...
  7. JustKIDn

    Help moving directories

    Hi All, I've setup a SuSE linux pc for my kids. All is good. I need to start adding educational programs but /dev/hda is going to be getting rather full. It seems that most programs get installed in the /usr directory. So I want to add a new drive and move the /usr directory on to it. So my...
  8. JustKIDn

    Help!!! Removed unused drive and now I can't boot

    Hi all, I know this sounds dumb, but how else do you learn!?!? Recently, I installed Suse 9.0. The system had one cdrom and three Hard Drives. IDE cable #1 had CD as first with a 2 GB Drive as Slave. IDE cable #2 had a 3 GB drive with another 3 GB drive as Slave. Suse decided it was a good...
  9. JustKIDn

    Perl Scripts for a Browser?

    Hi All, I've been using Perl on and off for quite a while now. But I've never had a need to use Perl to display data in a browser. Until now. Is it possible to write a Perl script to display data on a browser without using a Web Server like Apache? I'm thinking about something I could write...
  10. JustKIDn

    What's the story with $result ?

    Hi all, Just quickly, why does everyone use $result ? As Seinfeld would say 'Not that there's anything wrong with that!' I've just been noticing that almost every example that requests data from a DB uses $result. I've checked, it's not a reserved word or variable. So apparently it's not...
  11. JustKIDn

    error with - mysql_free_result()

    Hi all, After a series of pages that all work correctly. I am getting this error; Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /home/httpd/html/phone/modify.php on line 78 This is the code that errors that is in all the other pages that work...
  12. JustKIDn

    I have an address list that display

    I have an address list that displays correctly. I would like to add options to modify (edit) an entry. I was thinking about adding radio buttons. But my wife said I should just be able to click on the Last Name (like a link) and have it open another page. Here is the line that I think I need...
  13. JustKIDn

    Where did my files go !!!

    Hi All, I installed another drive, partitioned it, mounted it (I called it /stuff) and formated it. I gave permissions to /stuff in samba and then used ftp to download some files to it. So far, all that went just fine. I can even see the files with Network Neighborhood. (all is well!) But...
  14. JustKIDn

    PHP &amp; MySQL - buttons to update display of records

    Hi all, O.K. I don't know if this is a PHP or MySQL question, but since I'm doing the code in PHP, I'll start here. This is my first attempt at doing anything with PHP. So far so good! I have an address DB in MySQL in two tables. (names & address) This includes Birthdays. I have a sql...
  15. JustKIDn

    Upgrading or installing Suse Linux

    Hi all, I tried and tried to install Suse 8.2 from CD's. I even tried to do the install from the floppies. I have a Compaq Prosignia with SCSI drives and SCSI CD drive and 160MB RAM. I could almost get it to work on the floppies using the manual install. But when it comes time to load the...
  16. JustKIDn

    RegEx - get data from a point not at the beginning of the line.

    Hi all, I've inherited this goofy file! I can get everything else, but I can't seperate the address info. Example; lastname Firstname M status 12Oct44 age 123 MapleGrove Lane Firstname F status 12Oct44 age New York, NY 12345 Firstname M status 12Oct44 age...
  17. JustKIDn

    No Smartstart no OS - How do you partition HD?

    I have received an old Prosignia 500 server. I don't have a Smartstart CD. And there is no OS on the server. Is it possible to download the part of smartstart that handles partitioning and formatting the SCSI drives? If so, what is it called and where can I find it? Thanks! tgus...
  18. JustKIDn

    Can you help with a password question?

    Help, On my home network, I have an account for me and one for my wife. My account never seems to expire, but my wife's does. ( I haven't noticed how long between resets ) I checked useradd -D # useradd -D GROUP=100 HOME=/home/%s SHELL=/bin/bash SKEL=/etc/skel PASS_MIN_DAYS=0...
  19. JustKIDn

    File / Directory permissions for users or groups

    Hi, I'm trying to give permissions to a directory and all the files in the directory to a user. I've created a new group in case I want to give more users the same access. And I added the user to the group. The directory and all the files already have a group associated to them. I don't want...
  20. JustKIDn

    PHP n00bie - inclusion error

    Hi all, For starters: I've seen this error (see below) in many posts, in many PHP forums (I've done a lot of searching) but I haven't seen the answer yet. I have seen some suggestions. But the reason for getting this error seems to be different for everyone. I haven't seen this error posted for...

Part and Inventory Search

Back
Top