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 SkipVought 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: Cimm
  • Order by date
  1. Cimm

    Match data before displaying it on the web.

    Yes, you are right. I didnt take me long til I figured out something was not right. I deleted the line in the core.php file. Looks better now. I appreciate the help. I am just having some terrible issue with how the tables is getting on each other. Looks like a inverted pyramid :( //Mike
  2. Cimm

    Match data before displaying it on the web.

    I left $row_standingtable = mysql_fetch_assoc($standingtable); in core.php file. Replaced the <tr> <td class="row2" valign="top"><b><?php echo $row_standingtable['corp2'] ?></b></td> <td class="row1"><?php echo $row_standingtable['standing'] ?></td> </tr> in disp_member.php file with...
  3. Cimm

    Match data before displaying it on the web.

    Nevermind, your code is correct! Awesome!. Thanks
  4. Cimm

    Match data before displaying it on the web.

    I am little lost, The code I showed you //---------------------------- // Members table *SHOW STANDINGS* //---------------------------- is core.php disp_member.php has the code <tr> <td class="row2" valign="top"><b><?php echo $row_standingtable['corp2'] ?></b></td> <td...
  5. Cimm

    Match data before displaying it on the web.

    Just to add, this is the code I have in my disp_member.php to browse the above code that is being called everytime disp_member.php is being executed. <tr> <td class="row2" valign="top"><b><?php echo $row_standingtable['corp2'] ?></b></td> <td class="row1"><?php echo...
  6. Cimm

    Match data before displaying it on the web.

    is this something you could help me with then jpadie? //---------------------------- // Members table *SHOW STANDINGS* //---------------------------- $maxRows_standingtable = 1000; $pageNum_standingtable = 0; $startRow_standingtable = $pageNum_standingtable * $maxRows_standingtable...
  7. Cimm

    Match data before displaying it on the web.

    Ok thanks for the reply. The member name cannot be changed, and as far as concern the standing table, it will be quite big and wont be affected by any changes in the member table. All I want to do its just add additional information for display member site. I'll ask around in mysql forum as...
  8. Cimm

    Match data before displaying it on the web.

    I have a little problem that I am not sure how to do it. I have a website, which has 2 tables with information that I am interested in. When I type in index.php?memberid=4 It will show information regarding this member with ID 4. I have a another table I also would like to display in this...
  9. Cimm

    Database table layout help

    It is much simplier than that. An alliance will be considered as a corporation. Since the alliance leader can set standings to anyone ie a corporation or an alliance. It doesnt have to be known which corporation belongs to which alliance. We are only interested in what standings they have to...
  10. Cimm

    Database table layout help

    Nothing about the players, just corporations and alliances. so ID_CORP can in my mind either be a Alliance or a Corp. However, I have another questions. How will ID 1 Alliance table be the same as be the same as ID 1 in the corp table?
  11. Cimm

    Database table layout help

    Thanks, I'll probably skip the player table, so the last code you wrote would be ID ID_corp ID_corp standing 1 1 2 Good 2 2 1 neutral 3 2 3 Bad etc... Look's easy when you put it that way, I'll play around with the data and see how it...
  12. Cimm

    Database table layout help

    I am making a website for an online gamming community. Basicly what I want it to do is to find out who has good/bad/neutral standings with each corporation/alliance to each other. So a simply search for a corp name should give me a result who are what to that particular corp that was searched...
  13. Cimm

    nroff: cannot create temp file.

    This is just plain nuts I removed the link again and instead of using ../var/tmp I did ln -s /var/tmp tmp and now it works for all users. lrwxrwxrwx 1 root other 8 Apr 26 14:11 tmp -> /var/tmp instead of lrwxrwxrwx 1 root root 10 Aug 30 2005 tmp -> ../var/tmp...
  14. Cimm

    nroff: cannot create temp file.

    CA, lrwxrwxrwx 1 root other 10 Apr 26 13:58 tmp -> ../var/tmp Annihilannic, bash-2.05# ls -ld /tmp drwxrwxrwt 9 root sys 647 Apr 26 14:03 /tmp Ive been trying deleting the links, recreating them etc. Still the same. I believe it is the link /usr/tmp is the...
  15. Cimm

    nroff: cannot create temp file.

    Here's the output from it.. $ truss man man execve("/usr/bin/man", 0xFFBFFC0C, 0xFFBFFC18) argc = 2 resolvepath("/usr/lib/ld.so.1", "/usr/lib/ld.so.1", 1023) = 16 resolvepath("/usr/bin/man", "/usr/bin/man", 1023) = 12 stat("/usr/bin/man", 0xFFBFF9E0) = 0...
  16. Cimm

    nroff: cannot create temp file.

    /var/tmp drwxrwxrwt 5 root sys 1024 Apr 26 10:30 tmp -- Looks correct This issue appears to be for all users except for root. The file system isnt full. There must be a permission issue elsewhere. All users can create files in /var/tmp. But thanks for the respons. //Mike
  17. Cimm

    nroff: cannot create temp file.

    I need some help, one day I have a user that can't open man pages on a Solaris 9 server. Here's the error that shows up. $ man man Reformatting page. Please Wait...nroff: cannot create temp file. done Nothing has been changed in the system as far as I know. I've asked this particular user...
  18. Cimm

    scanner -i scripts

    Lots of useful information here, thanks alot. The customer I am working for doesnt want any restore , just index the tapes, I suspect they looking for a file but doesnt know in which tape it is in, or when it was changed. So if I understand you correctly now. 1, I need a media index before...
  19. Cimm

    scanner -i scripts

    Thanks for the explaination bigmikeo, a few more questions. You saying IF the tapes arent numbered then I would have test each tapes to see if it is the correct tape it need's to continue the index'ing?. There is no media index what so ever . Just a new backup server with a pile of tapes...
  20. Cimm

    scanner -i scripts

    Hi, I havent found anything regarding a problem one of my customers has. Problem: Several hundred's of Tapes need's to be indexed. I have several tape drives connected to the backup server. I would like to create some kind of queue, so it will continue index the tapes while afk. It takes...

Part and Inventory Search

Back
Top