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 strongm 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: elsni
  • Order by date
  1. elsni

    PHP Only Showing 1 ID

    you need to loop through the result set to display all data sets: $requete = "SELECT * FROM test"; $result = mysql_query ($requete,$db); while($test = mysql_fetch_object($result)) { echo $text->name.'<br>'; echo $text->email.'<br>'; echo $text->hobby.'<br>'; echo...
  2. elsni

    finding Next Sunday's date for SQL statement

    Try SELECT * FROM volunteers WHERE date_index = DATE_FORMAT(CURDATE(),"%w") This should work if you are using mysql and date_index is an INTEGER value which is 0 for sunday, 1 for monday and so on...
  3. elsni

    web part custom property display

    Hello, I need to create a web part with a large textarea field appearing in the properties dialogue of SPS2003. As far as I know, I can only control the property's appearance by chosing between bool (checkbox), enum (drop down) and string/int/float (input box). Is it possible to take advanced...

Part and Inventory Search

Back
Top