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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.