PHP MySQL - For every 6 rows insert a div?

后端 未结 3 873
忘了有多久
忘了有多久 2021-01-29 12:28

PHP:

prepare(\"SELECT * FROM `users`\");
$stmt->execute();
$result = $stmt->get_result();

//
3条回答
  •  误落风尘
    2020-11-21 01:17

    Use either of these depending how you want backslashes in the shell variables handled (avar is an awk variable, svar is a shell variable):

    awk -v avar="$svar" '... avar ...' file
    awk 'BEGIN{avar=ARGV[1];ARGV[1]=""}... avar ...' "$svar" file
    

    See http://cfajohnson.com/shell/cus-faq-2.html#Q24 for details and other options. The first method above is almost always your best option and has the most obvious semantics.

提交回复
热议问题