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 Wanet Telecoms Ltd 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

    ...ConnectToDatabase(); // This part of the code simply finds the total number of results that are going to be displayed. // $countquery = "SELECT * FROM $dbtable WHERE name='$user'"; $countresults = mysql_query($countquery); $totalresults = mysql_num_rows($countresults); // Sets it up...
  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

    ...ConnectToDatabase(); // This part of the code simply finds the total number of results that are going to be displayed. // $countquery = "SELECT * FROM hours;"; $countresults = mysql_query($countquery); $totalresults = mysql_num_rows($countresults); // Sets it up so that the variable...
  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

    ...ConnectToDatabase(); $DB_Name = "emplog"; //Run The Query Without a Limit to get Total result $SQL="SELECT COUNT(*) AS Total FROM $dbtable"; $SQL_Result=mysql_db_query($DB_Name, $SQL); $SQL_Result_Array=mysql_fetch_array($SQL_Result); $Total=$SQL_Result_Array['Total']; if...
  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

    ...2004 name2 July 06 2004 name1 July 07 2004 name2 July 08 2004 Here is the sql query i am using to display the data. If you need more code for a frame of reference tell me and ill post the whole thing. $result = mysql_query("SELECT * FROM $dbtable ORDER BY date...
  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

    ...stored $trimmed = trim($var); variable include 'include/include_dbconnect.php'; ConnectToDatabase(); $field_to_search = "name"; $query = "SELECT * FROM $dbtable WHERE $field_to_search LIKE \"%$trimmed%\" order by id"; include 'include/include_common.php'; ?> <html> <head>...
  20. je150

    variable values

    thanks, worked great

Part and Inventory Search

Back
Top