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 Mike Lewis 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: je150
  • Order by date
  1. je150

    CDRW "Uninstalled" in BIOS but burns fine??

    Ok, here comes a long one. A co-worker has just had a CD-RW from AOPEN installed model CW5323 and it came with Nero Express 5.5.10.56 Heres the problem, since installing this burner, the pc (dell optiplex 270) Win xp pro service pack 1 has been booting to a screen that says drive 2 not...
  2. je150

    Removing boot loader

    You can also go Start > Run type msconfig > enter This brings up the config utility Under "boot.ini" tab there should be a button to either search for or validate operating systems. Basically it will remove the "ghost" os you have written to the MBR because of the dual xp install.
  3. je150

    Suse on a laptop

    Ok thanks. So basically when i boot up it will give me a choice of operating systems. I would blow away windows except there are some games i like to play that im unsure will work with linux. I would think it would be lilo or at least give you the choice.
  4. je150

    Suse on a laptop

    Ive already downloaded the live cd, booted and worked fine, now i have the boot iso to dl and install SUSE 9.1 pro, since the home doesnt have hardly any dev tools. I am trying to do this on a laptop. Case in point, i know generally what i am doing, unfortunately, i have yet to find a dual boot...
  5. je150

    Function is showing up with errors on the page (newbie)

    Nevermind I fixed it! After coding php for weeks, i figured out that you cant immediately close else statements in javascript <script language=javascript> function checkform() { if (document.createuser.Name.value=="") { alert ("Name Field is Blank"); } else...
  6. je150

    Function is showing up with errors on the page (newbie)

    I wrote a function to make sure that all fields are set before the information is submitted. Unfortunately the submit button does nothing and ie says there are errors on the page. <script language=javascript> function checkform() { if (document.createuser.Name.value=="") { alert ("Name...
  7. je150

    Not sure how to use &quot;

    try moving the \ over one. You can make php recognize "" as a symbol rather than syntax with \ in FRONT of the symbol. ie. "\"" the second is now just a simple " and not part of missing syntax.
  8. je150

    pages

    I feel dumb I had my code right except for this part. here is the fixed version, compare and youll understand that filters were needed in the first sql statement. <?php include 'include/include_common.php'; ?> <html> <head> <title><?=$company?> - <?=$appName?></title> </head> <body...
  9. je150

    Comprehensive PHP Book/Tutorial

    Check your local bookstore. =) If you want some quick and dirty web tutorials try www.w3schools.com www.devshed.com www.php.net www.webmonkey.com or www.scripts.com
  10. je150

    pages

    The code $pagenext = ++$page; works the same as $pagenext = $page + 1; Provdided that you are incrementing the pages by 1. However both options leave you with a last page that displays nothing. there has to be a problem with the logic of this part of the code. I get a previous button...
  11. je150

    pages

    I found the same code... mine works but with a completely different bug. The page increases by 1 however it also adds a last ghost page. So if i display 10 entries per page and have 17 entries, it says i have 2 pages yet the next button lets me go to page 3. Anyway, my code works and is fully...
  12. je150

    Internet Explorer will not start to let me online

    When you say you click an icon, right click that and go to properties. Is it the programs icon set on the desktop or is it a shortcut. If it is a shortcut, does it point to the right .exe file??
  13. je150

    cannot run google serach or access certain sites

    Whats the age of the accounts? Is it working on the newest or the oldest? Have you ever ran any spyware programs ie (SpyBot Search and Destroy or Ad-Aware)? Have you tried clearing all browser cach, cookies, temporary internet files? Are there any sites you can access from the broken accounts...
  14. je150

    Paginating, interesting results

    Im trying to paginate some data. The first part shows up fine but when i click the next or numbered buttons the data disappears. It's as if the links are causing the script to run the $query again. Here's the code. Maybe i missed something elementary again. You'd think a simple thing like...
  15. je150

    SQL Queries Order By multiple

    Thanks KarverR, never even though of that. I was trying to do an ORDER BY ??? AND ???. Anyway, it worked. $result = mysql_query("SELECT * FROM $dbtable ORDER BY date ASC ,name",$authentication);
  16. je150

    SQL Queries Order By multiple

    I have a database of employee time logs and i have it already working perfectly and set to order by the date. Is there a way to not only order the output (a table with 6 fields) by the date but also by the username. Right now it comes out like this Userid Date name1 July 06 2004 name2...
  17. je150

    searching multiple fileds on a database

    Are all of you afraid of this post?? I thought it was a simple question. I just want to query different fields on a database. Maybe even compound the queries. If anyone knows even a MySQL command for that it would be useful.
  18. je150

    is it possible to fill the empty sections of a td with characters?

    Why not do this <tr> <td width="15%">textTextText</td> <td>......................</td> *must be enough "." to fill 70 percent* <td width="15%">Text</td> </tr> I think your trying to make one side of a table match with the other. Of course you could nest that table inside another...
  19. je150

    searching multiple fileds on a database

    Is it possible to create a search that allows you to identify which field of a database you want to search through. I already created a working search that looks through the field name and produces the results i need. Is there some easy way to adapt this to my needs or should i start tampering...
  20. je150

    variable values

    thanks, worked great

Part and Inventory Search

Back
Top