1 2 3 4 5 6 7 8 9 10 11
| <?php
$colname_Recordset2 = "-1";
if (isset($_GET['url'])) {
$colname_Recordset2 = $_GET['url'];
}
mysql_select_db(******, ********);
$query_Recordset2 = sprintf("SELECT * FROM list_film WHERE list_film LIKE %s ORDER BY list_film ASC", GetSQLValueString($colname_Recordset2 . "%", "text"));
$query_limit_Recordset2 = sprintf("%s LIMIT %d, %d", $query_Recordset2, $startRow_Recordset2, $maxRows_Recordset2);
$Recordset2 = mysql_query($query_limit_Recordset2, $onestream) or die(mysql_error());
$row_Recordset2 = mysql_fetch_assoc($Recordset2);
?> |