Happy Codings - Programming Code Examples
Html Css Web Design Sample Codes CPlusPlus Programming Sample Codes JavaScript Programming Sample Codes C Programming Sample Codes CSharp Programming Sample Codes Java Programming Sample Codes Php Programming Sample Codes Visual Basic Programming Sample Codes


Php Programming Code Examples

Php > Database Related Code Examples

Mimic ASPs GetRows functionality in PHP

Mimic ASPs GetRows functionality in PHP <? function GetRows($handle) { /* This function emulates the ASP GetRows function. It creates a 2 dimensional array of the data set where the : 1st dimension is the row number of the data 2nd dimension are the data fields Returns a two dimensional array if there are record or false if no records come out of the query */ if (mysql_num_rows($handle)>0){ //initialize the array $RsArray1 = array(); //loop thru the recordset while ($rows = mysql_fetch_array($handle)) { $RsArray1[] = $rows; } //wend return $RsArray1; }else{ //no records in recordset so return false return false; } //end if //close the connection mysql_close($handle); } //end function ?>