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 bkrike 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 Meteorlet

  1. Meteorlet

    Validate text box Character Length

    You can use regular expression pattern=/~((\d)||[a-z]){17}$/;
  2. Meteorlet

    How do you get just one cell to display from a MySQL db with PHP

    $dbh=mysql_connect("localhost:3306","username","password"); This creates the connection with the database,then you can store or get database's datas. Since raymundo saves the User ID with session,we should select the unique row. $sql="select * from $table_name...
  3. Meteorlet

    session help

    Something is wrong with the file operation. function fread(),fwrite() read or write binary datas into a file.But your $hits is a string,that's to say,10 means character 1 and 0,2 bytes.Therefore when you want to write 10 to file,in fact you write 1 to file because filesize() returns 1 byte. If...

Part and Inventory Search

Back
Top