How to synthesize two pieces of code into a function
Php
$query _hx_php= "SELECT * from content_publish WHERE content_language_classification = ' php ' GROUP by Content_original_aut or ORDER by content_id DESC ";
$record _php = mysql_query ($query _hx_php);
$record _cnt_php = mysql_num_rows ($record _php);
Asp
$query _hx_asp= "SELECT * from content_publish WHERE content_language_classification = ' asp ' GROUP by Content_original_aut or ORDER by content_id DESC ";
$record _asp = mysql_query ($query _hx_asp);
$record _cnt_asp = mysql_num_rows ($record _asp);
I hope that the suffix name, such as _asp _php, can vary according to the parameters, for example, if I pass in C, then the variable suffix name is unified into ****_c PHP MySQL ASP C Select
Share to:
------Solution--------------------
function AA ($STR) {
$str 1 = ' $ '. $str;
$query _hx_. $str 1= "SELECT * from content_publish WHERE content_language_classification = ' asp ' GROUP by Content_original_ Autor ORDER by content_id DESC ";
}